/* CSS Variables & Reset */
:root {
    /* Color Palette */
    --primary-color: #A4AC86; /* Sage Green */
    --secondary-color: #C2B280; /* Sand/Beige */
    --accent-color: #D4A373; /* Muted Gold/Earth */
    --dark-text: #414833; /* Dark Olive Grey */
    --light-text: #656D4A;
    --background: #FAF9F6; /* Off-White */
    --white: #FFFFFF;
    --border-color: #E0E0E0;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 1px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    font-size: 16px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid var(--dark-text);
}

.btn-secondary:hover {
    background-color: var(--dark-text);
    color: var(--white);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(233,237,201,0.2) 0%, rgba(250,249,246,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container { /* Not strictly needed if flex is on section, but good for structure if we rework */ }

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 8%; /* Indent for design */
    z-index: 2;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--light-text);
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Push image to right */
    position: absolute;
    right: -5%;
    top: 0;
    width: 55%;
    z-index: 1;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 100px; /* Aesthetic curve */
    opacity: 0.9;
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Themes */
.theme-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--light-text);
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.theme-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.theme-card:hover .theme-image img {
    transform: scale(1.05);
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.btn-preview {
    background: var(--white);
    color: var(--dark-text);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
}

.theme-info {
    padding: 25px;
}

.theme-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.theme-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    font-size: 12px;
    background: #F0F0F0;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--light-text);
}

.tag.color-dot {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
}

.btn-order {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--dark-text);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-order:hover {
    background: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 15px;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Approx height */
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background-color: #2F3228;
    color: #F0F0F0;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-brand p {
    color: #A4AC86;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 60vh;
        right: 0;
        border-radius: 0;
    }
    
    .hero-img-placeholder img {
        border-radius: 0;
    }

    .hamburger {
        display: block;
        z-index: 1002;
    }
    
    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark-text);
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .desktop-btn, .navbar .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}
