/* ==========================================================================
   PEPE CAFE - MAIN STYLESHEET
   Modern 3D Design with Coastal NZ Inspired Color Palette
   ========================================================================== */

/* CSS Variables - Color Palette */
:root {
    --primary: #2C5F2D;          /* Deep Forest Green - NZ bush */
    --primary-light: #4A8B4C;
    --primary-dark: #1A4220;
    --secondary: #D4A574;        /* Warm Tan - Sand/coffee */
    --accent: #E27D60;           /* Coral - Sunset */
    --accent-2: #F4D35E;         /* Golden Yellow - Sun */
    --dark: #1A2E1B;             /* Almost Black Green */
    --light: #FAF6F0;            /* Warm Cream */
    --gray: #6B7B6C;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #2C5F2D 0%, #4A8B4C 100%);
    --gradient-warm: linear-gradient(135deg, #E27D60 0%, #F4D35E 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(44, 95, 45, 0.85) 0%, rgba(26, 46, 27, 0.95) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-3d: 0 30px 60px rgba(44, 95, 45, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

/* Buttons - 3D Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 95, 45, 0.4), 0 10px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--gradient-warm);
    box-shadow: 0 10px 30px rgba(226, 125, 96, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 20px 40px rgba(226, 125, 96, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.site-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.site-logo::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 2px solid var(--white);
    border-radius: 50%;
    opacity: 0.5;
}

.site-logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    transition: var(--transition);
}

.scrolled .site-title {
    color: var(--primary);
}

.site-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: var(--accent-2);
    margin: 0;
}

.scrolled .site-tagline {
    color: var(--accent);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.scrolled .main-navigation a {
    color: var(--dark);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.scrolled .menu-toggle span {
    background: var(--dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================================================
   HERO SECTION - 3D PARALLAX
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1A4220 0%, #2C5F2D 50%, #4A8B4C 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(244, 211, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(226, 125, 96, 0.2) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100% 100%;
    opacity: 0.5;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Floating 3D shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-warm);
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 15%;
    left: -50px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-2);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    transform-style: preserve-3d;
}

.hero-greeting {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--accent-2);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

.hero-title .highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    display: block;
    font-size: 1.5rem;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--gradient-warm);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.about-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: var(--transition);
}

.about-image-main {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    transform: rotateY(-5deg);
    z-index: 2;
}

.about-image-secondary {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    transform: rotateY(5deg);
    z-index: 1;
    border: 8px solid var(--white);
}

.about-image:hover {
    transform: scale(1.05) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(44, 95, 45, 0.3) 100%);
    z-index: 1;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light) 0%, #F0EBE0 100%);
    position: relative;
    overflow: hidden;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.menu-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

.menu-item-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.menu-item:hover .menu-item-image::before {
    opacity: 0.2;
}

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

.menu-item:hover .menu-item-image img {
    transform: scale(1.15);
}

.menu-item-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: var(--gradient-warm);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.menu-item-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item-tags {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.menu-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(44, 95, 45, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 500;
}

.menu-tag.vegan { background: rgba(74, 139, 76, 0.15); color: var(--primary-light); }
.menu-tag.gf { background: rgba(244, 211, 94, 0.2); color: #B8860B; }
.menu-tag.popular { background: rgba(226, 125, 96, 0.15); color: var(--accent); }

/* ==========================================================================
   FEATURES / SERVICES SECTION
   ========================================================================== */
.features {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient-warm);
    transition: all 0.4s;
}

.feature-card:hover::before {
    width: 100%;
    left: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-3d);
}

.feature-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 15px 30px rgba(44, 95, 45, 0.3);
    transition: var(--transition);
    position: relative;
}

.feature-card-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    animation: spin 10s linear infinite;
}

.feature-card:hover .feature-card-icon {
    transform: rotateY(360deg);
    background: var(--gradient-warm);
}

.feature-card:hover .feature-card-icon::after {
    opacity: 1;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item-1 { grid-column: span 2; grid-row: span 2; }
.gallery-item-2 { grid-column: span 1; grid-row: span 1; }
.gallery-item-3 { grid-column: span 1; grid-row: span 1; }
.gallery-item-4 { grid-column: span 1; grid-row: span 2; }
.gallery-item-5 { grid-column: span 1; grid-row: span 1; }
.gallery-item-6 { grid-column: span 2; grid-row: span 1; }

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    right: 5%;
    font-size: 25rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.testimonials .section-subtitle {
    color: var(--accent-2);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--accent-2);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   CONTACT / VISIT SECTION
   ========================================================================== */
.contact {
    padding: 120px 0;
    background: var(--light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-detail p, .contact-detail a {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.contact-detail a:hover {
    color: var(--accent);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    color: var(--primary);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-warm);
    border-radius: 50%;
    opacity: 0.1;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E0D5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.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(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-warm);
    transform: translateY(-5px) rotateY(360deg);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget a:hover {
    color: var(--accent-2);
    transform: translateX(5px);
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-2);
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
.parallax-element {
    will-change: transform;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PAGE BANNER
   ========================================================================== */
.page-banner {
    padding: 180px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 211, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(226, 125, 96, 0.2) 0%, transparent 40%);
}

.page-banner h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--accent-2);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item-1 { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s;
        z-index: 1000;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .main-navigation a {
        color: var(--dark);
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-1, .gallery-item-4, .gallery-item-6 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .site-tagline {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

/* Print styles */
@media print {
    .site-header, .site-footer, .menu-toggle {
        display: none;
    }
}
