/*
Theme Name: Canna v2 - Jardinería y Medio Ambiente
Theme URI: https://jardineriacanna.com
Author: Canna Team
Author URI: https://jardineriacanna.com
Description: Tema WordPress para Jardinería Canna - Diseño mejorado con páginas independientes
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: canna
*/

/* ============================================
   CANNA THEME v2 - JARDINERÍA Y MEDIO AMBIENTE
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --canna-red: #C41E3A;
    --canna-red-dark: #9A1830;
    --canna-green: #2D5A3D;
    --canna-green-dark: #1E3D29;
    --canna-green-light: #4A7C59;
    --canna-cream: #F5F0E8;
    --canna-cream-dark: #E8E0D4;
    --canna-dark: #1A1A1A;
    --canna-gray: #666666;
    --canna-light-gray: #F8F8F8;
    --canna-white: #FFFFFF;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--canna-cream);
    color: var(--canna-dark);
    line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poiret One', cursive;
    font-weight: 400;
    line-height: 1.3;
}

.font-poiret { font-family: 'Poiret One', cursive; }
.font-opensans { font-family: 'Open Sans', sans-serif; }

/* ============================================
   HEADER & NAVIGATION - MEJORADO
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO MEJORADO - Con fondo para visibilidad */
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.site-logo:hover {
    background: var(--canna-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--canna-red);
}

.logo-text {
    font-family: 'Poiret One', cursive;
    font-size: 1.75rem;
    color: var(--canna-red);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Header scrolled - logo ajustado */
.site-header.scrolled .site-logo {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.site-header.scrolled .logo-text {
    color: var(--canna-red);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--canna-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.current {
    background: var(--canna-red);
    color: var(--canna-white);
}

/* Header scrolled - nav ajustado */
.site-header.scrolled .nav-menu a {
    color: var(--canna-dark);
    background: transparent;
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.current {
    background: var(--canna-red);
    color: var(--canna-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--canna-red);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - MEJORADO
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--canna-white);
    padding: 2rem;
    max-width: 900px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 30, 58, 0.9);
    border-radius: 30px;
}

.hero-tagline span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
}

.hero-tagline svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-divider .line {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.6);
}

.hero-divider .dot {
    width: 10px;
    height: 10px;
    background: var(--canna-red);
    border-radius: 50%;
}

/* BOTÓN MEJORADO - Más visible */
.btn-canna {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--canna-red);
    color: var(--canna-white);
    border: 3px solid var(--canna-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.btn-canna:hover {
    background: var(--canna-white);
    color: var(--canna-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

.btn-canna-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--canna-red);
    border-color: var(--canna-white);
}

.btn-canna-outline:hover {
    background: var(--canna-red);
    color: var(--canna-white);
    border-color: var(--canna-red);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--canna-red);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tagline {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--canna-red);
    margin-bottom: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    color: var(--canna-green);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--canna-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.section-divider .line {
    width: 60px;
    height: 2px;
    background: var(--canna-red);
}

.section-divider .dot {
    width: 8px;
    height: 8px;
    background: var(--canna-red);
    border-radius: 50%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--canna-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--canna-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: var(--canna-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--canna-red);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    color: var(--canna-green);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--canna-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--canna-gray);
    margin-bottom: 0.4rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--canna-red);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   BOOK SECTION
   ============================================ */
.book-section {
    background: var(--canna-white);
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-images {
    position: relative;
}

.book-main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.book-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.book-secondary-image {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border: 5px solid var(--canna-white);
}

.book-secondary-image img {
    width: 100%;
    height: auto;
    display: block;
}

.book-decoration {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 120px;
    height: 120px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.book-content .section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-title {
    font-size: 2.5rem;
    color: var(--canna-green);
    margin-bottom: 1rem;
}

.book-text {
    color: var(--canna-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.book-highlight {
    color: var(--canna-green);
    font-weight: 600;
    background: rgba(45, 90, 61, 0.08);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--canna-green);
}

.book-cta {
    background: var(--canna-cream);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.book-cta h4 {
    font-size: 1.2rem;
    color: var(--canna-green);
    margin-bottom: 0.75rem;
}

.book-cta p {
    font-size: 0.9rem;
    color: var(--canna-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--canna-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content {
    order: 1;
}

.about-image {
    order: 2;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--canna-red);
    border-radius: 12px;
    z-index: -1;
}

.about-text {
    color: var(--canna-gray);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--canna-green);
    font-weight: 700;
}

.about-philosophy {
    background: var(--canna-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--canna-red);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.about-philosophy h4 {
    font-size: 1.2rem;
    color: var(--canna-green);
    margin-bottom: 0.75rem;
}

.about-philosophy p {
    font-size: 0.95rem;
    color: var(--canna-gray);
    line-height: 1.7;
}

.about-quote {
    padding: 1.5rem;
    background: var(--canna-green);
    border-radius: 12px;
}

.about-quote p {
    font-size: 1.4rem;
    color: var(--canna-white);
    font-style: italic;
    text-align: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--canna-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--canna-red);
}

.value-title {
    font-size: 1.3rem;
    color: var(--canna-green);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 0.9rem;
    color: var(--canna-gray);
    line-height: 1.6;
}

/* Gallery */
.about-gallery {
    margin-top: 4rem;
}

.about-gallery h4 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--canna-green);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--canna-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--canna-green);
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--canna-red);
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--canna-gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--canna-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.contact-value:hover {
    color: var(--canna-red);
}

.social-links {
    margin-bottom: 2rem;
}

.social-links p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--canna-gray);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--canna-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canna-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--canna-red);
    color: var(--canna-white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.contact-box {
    background: var(--canna-cream);
    padding: 1.5rem;
    border-radius: 12px;
}

.contact-box h4 {
    font-size: 1.2rem;
    color: var(--canna-green);
    margin-bottom: 0.75rem;
}

.contact-box p {
    font-size: 0.9rem;
    color: var(--canna-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--canna-green);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--canna-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--canna-cream);
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--canna-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--canna-red);
    background: var(--canna-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--canna-red);
    color: var(--canna-white);
    border: 3px solid var(--canna-red);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: transparent;
    color: var(--canna-red);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.form-message {
    padding: 1rem;
    background: rgba(45, 90, 61, 0.1);
    color: var(--canna-green);
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.form-message.error {
    background: rgba(196, 30, 58, 0.1);
    color: var(--canna-red);
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--canna-green);
    color: var(--canna-white);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--canna-red);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    color: var(--canna-green);
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.page-content h3 {
    color: var(--canna-green);
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
}

.page-content p {
    color: var(--canna-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--canna-gray);
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-content a {
    color: var(--canna-red);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-section {
    background: var(--canna-white);
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--canna-green);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--canna-cream);
}

.legal-content h3 {
    color: var(--canna-green);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--canna-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--canna-gray);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-info-box {
    background: var(--canna-cream);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--canna-red);
}

.legal-info-box h4 {
    color: var(--canna-green);
    margin-bottom: 1rem;
}

.legal-info-box p {
    margin-bottom: 0.5rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    background: var(--canna-cream);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs a {
    color: var(--canna-gray);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--canna-red);
}

.breadcrumbs span {
    color: var(--canna-red);
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    color: var(--canna-green);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--canna-green-dark);
    color: var(--canna-white);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    width: 32px;
    height: 32px;
    color: var(--canna-red);
}

.footer-brand span {
    font-family: 'Poiret One', cursive;
    font-size: 2rem;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canna-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--canna-red);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--canna-white);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.6rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--canna-white);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--canna-red);
}

.footer-legal {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
}

.footer-legal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--canna-white);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .book-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content { order: 2; }
    .about-image { order: 1; }
    
    .book-secondary-image {
        right: 0;
        width: 50%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0.75rem 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--canna-white);
        padding: 5rem 1.5rem 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        color: var(--canna-dark) !important;
        background: var(--canna-cream) !important;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-canna {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--canna-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
