/*
Theme Name: Urban Olive Mediterranean
Theme URI: https://urban-olive.com
Author: Dibraco
Description: A modern, responsive WordPress theme for Urban Olive Mediterranean, featuring authentic fast-casual Mediterranean cuisine.
Version: 1.2
Text Domain: urban-olive
*/

:root {
    --deep-blue: #050d1a;
    --soft-sand: #f5f0e6;
    --olive-green: #526e32;
    --vibrant-blue: #225cae;

    --olive-green-dark: #3e5122;
    --olive-green-light: #6b7d3f;
    --deep-blue-transparent: rgba(5, 13, 26, .85);
    --soft-sand-transparent: rgba(245, 240, 230, .95);

    --spacing-xs: .5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 3rem;

    --transition-fast: .15s ease;
    --transition-base: .3s ease;
    --transition-slow: .5s ease;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, .1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, .15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, .2);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --focus-ring: 3px;
    --focus-color: rgba(34, 92, 174, .18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: "Raleway", system-ui, sans-serif;
    color: var(--deep-blue);
    background: var(--soft-sand);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

.lead-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    opacity: .9;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    padding: 8px 12px;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
}

/* Focus states */
:focus {
    outline: none;
}

:focus-visible {
    box-shadow: 0 0 0 var(--focus-ring) var(--focus-color);
    border-radius: var(--radius-sm);
    transition: box-shadow var(--transition-fast);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--vibrant-blue);
}

a:focus-visible,
button:focus-visible,
.cta-button:focus-visible,
.header-menu li a:focus-visible {
    box-shadow: 0 0 0 var(--focus-ring) var(--focus-color);
    border-radius: var(--radius-md);
}

/* =============================================================================
   NAVIGATION - Sticky CTA, Header, Logo & Menu
/* =============================================================================
   HEADER
   ============================================================================= */
@keyframes navOpen {
    from { max-height: 0; opacity: 0; }
    to { max-height: 300px; opacity: 1; }
}

.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--soft-sand);
    padding: 12px 5%;
    display: flex;
    gap: 15px;
    justify-content: center;
}

header.site-header {
    background: var(--soft-sand);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 54px;
    position: relative;
    z-index: 100;
}

header.site-header .nav-toggle-checkbox {
    position: absolute;
    left: -9999px;
}

header.site-header .nav-toggle-label {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

header.site-header .site-nav {
    display: block;
}

header.site-header .nav-links,
header.site-header .nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.site-header .nav-links {
    display: flex;
    gap: 30px;
}

header.site-header .nav-links a {
    font-weight: 600;
    color: var(--deep-blue);
}

@media screen and (max-width: 768px) {
    header.site-header .nav-toggle-label {
        display: block;
        z-index: 101;
        transition: transform 0.3s ease;
    }

    header.site-header .nav-toggle-checkbox:checked ~ .nav-toggle-label {
        transform: rotate(90deg);
    }

    header.site-header .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--soft-sand);
        box-shadow: var(--shadow-md);
        z-index: 99;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    }

    header.site-header .nav-toggle-checkbox:checked ~ .site-nav {
        max-height: 350px;
        opacity: 1;
    }

    header.site-header .nav-links {
        flex-direction: column;
        gap: 0;
    }

    header.site-header .nav-links a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
}
/* -----------------------
2. Hero Section
----------------------- */
.hero {
    min-height: 85vh;
    background-image: url('https://urban-olive.com/wp-content/uploads/2025/10/urbanolivebackground.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--soft-sand);
    padding: var(--spacing-xl) 5%;
}

/* Gradient overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.7) 0%, rgba(82, 99, 46, 0.4) 50%, rgba(5, 13, 26, 0.6) 100%);
    pointer-events: none;
}

/* Hero content sits above the overlay */
.hero-content {
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}



/* Headline with enhanced readability */
.hero-headline {
    font-size: clamp(2.5em, 5vw, 5em);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(5, 13, 26, 0.8), 0 2px 10px rgba(5, 13, 26, 0.6);
    line-height: 1.1;
    color: var(--soft-sand);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Hero body text */
.hero-body {
    font-size: clamp(1.1em, 2vw, 1.5em);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--soft-sand);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(5, 13, 26, 0.7);
    font-weight: 400;
}

/* CTA layout */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-lg);
}

/* Button styles */
.cta-button {
    padding: 16px 36px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background-color: var(--vibrant-blue);
    color: var(--soft-sand);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    background-color: #1a4d8c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: var(--soft-sand);
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--vibrant-blue);
    border-color: var(--vibrant-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.large {
    min-width: 200px;
    padding: 18px 40px;
    font-size: 1em;
}

/* -----------------------
3. Content Sections
----------------------- */
.section {
    padding: var(--spacing-xl) 5%;
    text-align: center;
}

.section-title {
    font-size: clamp(2em, 4vw, 3.5em);
    margin-bottom: var(--spacing-xl);
    color: var(--deep-blue);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--olive-green), var(--vibrant-blue));
    border-radius: 2px;
}

/* Story Section */
.story-section {
    background-color: var(--soft-sand);
    position: relative;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: center;
}

.story-text {
    max-width: 700px;
}

.story-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--deep-blue);
}

.story-text p:first-of-type::first-letter {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.1em 0 0;
    color: var(--olive-green);
}

.story-image-placeholder {
    min-height: 400px;
    width: 100%;
    max-width: 500px;
    background-image: url('assets/textures/Texture11_max1024_q80.webp');
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow);
}

.story-image-placeholder:hover {
    transform: scale(1.02);
}

.story-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(82, 99, 46, 0.1) 0%, transparent 100%);
}
/* =============================================================================
   FOOD MENU PAGE
   ============================================================================= */

.fm-hero {
    background-image: linear-gradient(135deg, rgba(5, 13, 26, 0.7), rgba(82, 99, 46, 0.5)), url('assets/textures/Texture10_max2048_q80.webp');
}

.fm-filters-section {
    background: var(--soft-sand);
    padding: 1.5rem 5%;
    border-bottom: 2px solid var(--olive-green);
    position: sticky;
    top: 54px;
    z-index: 50;
}

.fm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fm-filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--olive-green);
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--olive-green);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fm-filter-btn:hover,
.fm-filter-btn.active {
    background: var(--olive-green);
    color: var(--soft-sand);
    box-shadow: 0 4px 12px rgba(82, 99, 46, 0.3);
}

.fm-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fm-category {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(82, 99, 46, 0.2);
}

.fm-category:last-child {
    border-bottom: none;
}

.fm-category.hidden {
    display: none;
}

.fm-category-title {
    font-size: 2rem;
    color: var(--olive-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fm-item {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fm-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(82, 99, 46, 0.15);
    border-color: var(--olive-green);
}

.fm-item-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
}

.fm-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fm-item:hover .fm-item-image img {
    transform: scale(1.05);
}

.fm-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.fm-item-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
    line-height: 1.3;
}

.fm-item-price {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--olive-green);
    white-space: nowrap;
}

.fm-item-desc {
    font-size: 0.9em;
    color: var(--deep-blue);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.fm-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.fm-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--olive-green);
    color: var(--soft-sand);
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
}

.fm-item-nutrition {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.8em;
    color: var(--deep-blue);
    opacity: 0.7;
}

@media (max-width: 767px) {
    .fm-filters-section {
        top: 44px;
    }
    
    .fm-filters {
        flex-direction: column;
    }
    
    .fm-filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .fm-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1400px) {
    .fm-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Location Section */
.location-section {
    background-color: var(--olive-green);
    color: var(--soft-sand);
    padding: var(--spacing-xl) 5%;
    background-image: url('assets/textures/Texture11_max2048_q80.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.9) 0%, rgba(82, 99, 46, 0.85) 100%);
}

.location-content {
    z-index: 10;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.location-content p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.section-title.dark {
    color: var(--soft-sand);
}

.section-title.dark::after {
    background: linear-gradient(90deg, var(--vibrant-blue), var(--soft-sand));
}

.cta-button.dark-bg {
    background-color: var(--vibrant-blue);
    border-color: var(--vibrant-blue);
    color: var(--soft-sand);
}

.cta-button.dark-bg:hover {
   background-color: var(--vibrant-blue); 
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* -----------------------
4. Footer
----------------------- */
footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #0a1628 100%);
    color: var(--soft-sand);
    padding: var(--spacing-xl) 5% var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive-green), var(--vibrant-blue), var(--olive-green));
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.col {
    width: 100%;
}

.col h4 {
    color: var(--olive-green-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col p {
    margin-bottom: var(--spacing-sm);
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

.col a {
    transition: color var(--transition-base);
}

.col a:hover {
    color: var(--vibrant-blue);
}

.footer-logo {
    font-size: 1.8em;
    margin-bottom: var(--spacing-md);
    color: var(--soft-sand);
    font-weight: 800;
}


/* Social Links */
.social {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.social a {
    color: var(--vibrant-blue);
    font-weight: 600;
    font-size: 1.1em;
    transition: all var(--transition-base);
    padding: var(--spacing-xs);
}

.social a:hover {
    color: var(--olive-green-light);
    transform: translateY(-2px);
}

/* Legal */
.legal {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(245, 240, 230, 0.15);
    font-size: 0.9em;
    opacity: 0.8;
}

.legal a {
    color: var(--vibrant-blue);
    text-decoration: underline;
}

.legal a:hover {
    color: var(--olive-green-light);
}

/* -----------------------
5. Responsive Design
----------------------- */

    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas a {
        width: 100%;
        max-width: 300px;
    }

    .story-text {
        padding: 0 var(--spacing-sm);
    }

    .story-image-placeholder {
        min-height: 300px;
    }

    .menu-grid {
        gap: var(--spacing-md);
    }

    .section {
        padding: var(--spacing-lg) 5%;
    }

    .section-title {
        margin-bottom: var(--spacing-lg);
    }

    .location-section {
        background-attachment: scroll;
        min-height: 50vh;
    }
}

/* Tablet styles (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .fm-menu-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fm-menu-item {
        width: 45%;
        max-width: 400px;
    }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
    .header-menu {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-md);
    }

    .story-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: var(--spacing-xl);
        text-align: left;
    }

    .fm-menu-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .fm-menu-item {
        width: 32%;
        max-width: 400px;
        margin: 0;
    }

    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: var(--spacing-xl);
    }

    .col {
        width: 30%;
    }


    .hero-ctas {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .social {
        justify-content: flex-start;
    }
}

/* Large desktop (1440px and up) */
@media(min-width: 1440px) {
    .section {
        padding: calc(var(--spacing-xl) * 1.5) 5%;
    }

    .hero-headline {
        font-size: 5.5em;
    }

    .fm-menu-item {
        width: 30%;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {

    header,
    .section,
    footer {
        padding-left: calc((100% - 1800px) / 2);
        padding-right: calc((100% - 1800px) / 2);
    }
}

/* -----------------------
6. Utility Classes
----------------------- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {

    header,
    footer,
    .hero-ctas,
    .cta-button {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* -----------------------
About Page Styles
----------------------- */
.about-hero {
    background-image: linear-gradient(135deg, rgba(5, 13, 26, 0.75), rgba(34, 92, 174, 0.6)),
        url('assets/textures/Texture21_max2048_q80.webp');
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.mission-section {
    background-color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.mission-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--soft-sand);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.mission-item h3 {
    color: var(--olive-green);
    font-size: 1.8em;
    margin-bottom: var(--spacing-md);
}

.mission-item p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--deep-blue);
}

.story-narrative {
    background-color: var(--soft-sand);
}

.narrative-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1em;
    line-height: 1.9;
    text-align: left;
}

.values-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #0a1628 100%);
    color: var(--soft-sand);
}

.values-section.section-title {
    color: var(--soft-sand);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgba(245, 240, 230, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(82, 99, 46, 0.2);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--olive-green);
    background: rgba(245, 240, 230, 0.1);
}

.value-icon {
    font-size: 3em;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    color: var(--olive-green-light);
    font-size: 1.5em;
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--soft-sand);
    line-height: 1.7;
}

.archetype-section {
    background-color: white;
}

.archetype-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.archetype-text {
    text-align: left;
}

.archetype-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.archetype-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.location-highlight {
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.9), rgba(82, 99, 46, 0.85)),
        url('assets/textures/Texture11_max2048_q80.webp');
    background-size: cover;
    background-position: center;
    color: var(--soft-sand);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-highlight.section-title.dark,
.location-highlight.lead-text {
    color: var(--soft-sand);
}

/* -----------------------
Contact Page Styles
----------------------- */
.contact-hero {
    background-image: linear-gradient(135deg, rgba(5, 13, 26, 0.7), rgba(82, 99, 46, 0.5)),
        url('assets/textures/Texture10_max1024_q80.webp');
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    background-color: var(--soft-sand);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    color: var(--olive-green);
    font-size: 1.5em;
    margin-bottom: var(--spacing-md);
}

.contact-card p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.contact-link {
    color: var(--vibrant-blue);
    font-weight: 600;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--olive-green);
}

.hours-list {
    margin-top: var(--spacing-md);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(5, 13, 26, 0.1);
    gap: var(--spacing-md);
}

.hours-row:last-child {
    border-bottom: none;
}

.social-links {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.social-links a {
    color: var(--vibrant-blue);
    font-weight: 600;
}

.contact-form-section {
    background-color: white;
}

.contact-form {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-lg);
    background: var(--soft-sand);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-blue);
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(5, 13, 26, 0.1);
    border-radius: var(--radius-sm);
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    color: var(--deep-blue);
    background-color: white;
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
}

.map-placeholder {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(245, 240, 230, 0.95);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.map-overlay h3 {
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
}

.faq-section {
    background-color: var(--soft-sand);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-question {
    color: var(--olive-green);
    font-size: 1.2em;
    margin-bottom: var(--spacing-sm);
}

.faq-answer {
    color: var(--deep-blue);
    line-height: 1.7;
    margin-bottom: 0;
}
