/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --color-sand: #eefbf3;
    --color-beige: #e8e6e1;
    --color-botanical: #48580f;
    --color-warm-text: #141514;
    --color-black: #141514;
    --color-ivory: #e8e6e1;
    --color-seafoam: #eefbf3;
    --color-olive: #48580f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-sand);
    color: var(--color-warm-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', Georgia, serif;
    font-weight: 500;
    color: var(--color-warm-text);
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    border: none;
}

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

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

/* ==========================================
   Header Styles
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: linear-gradient(to right, #48502D, #6B7A4E, #8FA975, #BCD09A);
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 2.5rem;
}

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

.social-icons a {
    color: white;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.6;
}

.social-icons svg {
    width: 1rem;
    height: 1rem;
}

.nav-container {
    background: white;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo img {
    height: 3.5rem;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-warm-text);
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.desktop-nav a:hover {
    opacity: 0.6;
}

.desktop-nav a.active {
    color: var(--color-olive);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-warm-text);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--color-warm-text);
    letter-spacing: 0.05em;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.hero-slide.active img {
    animation: kenBurns 6s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.2), transparent);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, transparent, rgba(0,0,0,0.2));
    pointer-events: none;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
}

.hero-text {
    max-width: 64rem;
    text-align: center;
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero-button {
    animation: fadeInUp 0.7s ease-out backwards;
}

.hero-title {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation-delay: 0.1s;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation-delay: 0.2s;
}

.hero-button {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    background-color: var(--color-olive);
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    animation-delay: 0.3s;
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.75);
}

.hero-dot.active {
    width: 3rem;
    background: white;
}

/* ==========================================
   Living Concepts Section
   ========================================== */
.living-concepts {
    padding: 6rem 0;
    background: white;
}

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

.section-divider {
    width: 6rem;
    height: 1px;
    background: var(--color-olive);
    margin: 1rem auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-warm-text);
    opacity: 0.8;
    max-width: 42rem;
    margin: 0 auto;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.concept-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: #D9E5B5;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.concept-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.concept-card h4 {
    margin-bottom: 1rem;
}

.concept-card p {
    text-align: left;
    color: var(--color-warm-text);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.concept-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1rem;
    margin-top: 1rem;
}

/* ==========================================
   Featured Products Section
   ========================================== */
.featured-products {
    padding: 6rem 0;
    background: linear-gradient(to right, #E0ECC0, #EEFAD8, #F5FCE8, #EEFAD8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

/* ==========================================
   Newsletter Section
   ========================================== */
.newsletter {
    padding: 6rem 0;
    background: white;
}

.newsletter-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 0.5rem;
}

.newsletter p {
    font-size: 1.125rem;
    color: var(--color-warm-text);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(0,0,0,0.1);
    background: #f5f8e8;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: rgba(0,0,0,0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: var(--color-olive);
    color: white;
    font-weight: 500;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.newsletter-privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-warm-text);
    opacity: 0.6;
}

/* ==========================================
   Events Section
   ========================================== */
.events {
    padding: 5rem 0;
    background: linear-gradient(135deg, #C8D9A8 0%, #E5F0D3 25%, #F5FCE8 50%, #E5F0D3 75%, #B8D89A 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.1);
}

.events-list {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.event-card:hover {
    border-color: rgba(0,0,0,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.event-date {
    background: #eefbf3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 200px;
}

.date-day {
    font-size: 3rem;
    color: var(--color-olive);
    margin-bottom: 0.5rem;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-olive);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.date-year {
    font-size: 0.75rem;
    color: var(--color-olive);
    opacity: 0.6;
}

.event-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #f5f0e8;
    color: var(--color-olive);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.event-details h3 {
    margin-bottom: 0.5rem;
}

.event-details > p {
    color: var(--color-warm-text);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-warm-text);
    opacity: 0.7;
}

.event-time svg,
.event-location svg {
    width: 1rem;
    height: 1rem;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: #9ba888;
    color: white;
    transition: all 0.3s;
}

.event-button:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-button.sold-out {
    opacity: 0.6;
    cursor: not-allowed;
}

.event-button svg {
    width: 1rem;
    height: 1rem;
}

.event-thumbnail {
    width: 6rem;
    height: 6rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(0,0,0,0.05);
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-thumbnail img {
    transform: scale(1.1);
}

.events-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: var(--color-olive);
    color: white;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(to right, rgb(72 93 3), rgb(89 111 47), rgb(104 130 78), rgb(66 72 44));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2);
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, rgba(138,43,226,0.1));
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand img {
    height: 4rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-address {
    margin-top: 0.75rem;
    opacity: 0.8;
}

.footer-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.375rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: white;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-social h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 0.75rem;
}

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

.footer-social-icons a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background: rgba(255,255,255,0.6);
}

.footer-social-icons svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: white;
    opacity: 0.75;
}

.footer-bottom a {
    color: white;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.6;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero-description {
        font-size: 1rem;
    }

    .hero-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-arrow-prev { left: 1rem; }
    .hero-arrow-next { right: 1rem; }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        min-height: auto;
        padding: 1.5rem;
    }

    .event-thumbnail {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}