/* Color Palette Variables */
:root {
    --warm-taupe: #b39c82;
    --muted-olive: #828c74;
    --soft-gold: #76310c;
    --creamy-beige: #f5eedc;
    --dark-bg: #1a1a1a;
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition-speed: 0.3s;
}

/* Reset & Base Styles */
html {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Animated Background for entire site */
.body-animated-bg {
    background: linear-gradient(-45deg, var(--creamy-beige), #e8e0cc, var(--creamy-beige), #f9f6f0);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typography & General Classes */
.section-container, .header-container, .footer-container, .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--muted-olive);
    margin-bottom: 40px;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--creamy-beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    border: 5px solid var(--warm-taupe);
    border-top: 5px solid var(--soft-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--muted-olive);
    letter-spacing: 2px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: #e0e0e0;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #555;
}

/* Header */
.main-header {
    background-color: var(--warm-taupe);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--soft-gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 1.5px;
    font-family: 'Times New Roman', serif;
}

.desktop-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
    background-color: var(--soft-gold); transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--soft-gold); }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--muted-olive);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background-color: #6a7460;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--muted-olive);
    color: var(--muted-olive);
}

.btn-secondary:hover { background-color: rgba(130, 140, 116, 0.1); }

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line { width: 25px; height: 3px; background-color: var(--text-light); border-radius: 2px; }

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
    background-color: var(--warm-taupe); z-index: 2000;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.mobile-nav-overlay.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2.5rem; color: var(--text-light); cursor: pointer; }
.mobile-nav-list { list-style: none; padding: 0; text-align: center; }
.mobile-nav-item { margin: 25px 0; }
.mobile-nav-link { text-decoration: none; font-size: 1.5rem; color: var(--text-light); font-weight: bold; }

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image-wrapper { flex: 1; text-align: center; position: relative; }

.animated-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }

.hero-text-wrapper { flex: 1; }
.hero-title { font-size: 3rem; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; font-family: 'Times New Roman', serif; }
.hero-subtitle { font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 30px; }
.hero-btn { background-color: var(--soft-gold); color: #fff; font-size: 1.2rem; padding: 15px 35px; }
.hero-btn:hover { background-color: #c9a32c; }

/* Sections Styling */
.about-section, .why-us-section, .testimonials-section, .faq-section { padding: 80px 20px; }
.about-content { display: flex; flex-direction: column; align-items: center; gap: 30px; max-width: 800px; margin: 0 auto; text-align: center; }
.about-text { font-size: 1.1rem; line-height: 1.8; color: #444; }
.about-product-showcase { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.about-img { width: 100%; max-width: 300px; border-radius: 8px; margin-bottom: 15px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background-color: rgba(255,255,255,0.6); padding: 40px 20px; border-radius: 15px; text-align: center; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); background-color: rgba(255,255,255,0.9); }
.feature-icon { font-size: 3rem; margin-bottom: 20px; color: var(--muted-olive); }
.feature-heading { font-size: 1.3rem; margin-bottom: 15px; color: var(--warm-taupe); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.testimonial-card { background: white; padding: 30px; border-radius: 10px; border-left: 5px solid var(--soft-gold); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.avatar { width: 50px; height: 50px; background-color: var(--warm-taupe); color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; font-size: 1.2rem; }
.customer-name { font-size: 1.1rem; color: var(--text-dark); }
.customer-review { font-style: italic; color: #666; line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.faq-question { margin-bottom: 10px; color: var(--muted-olive); font-size: 1.2rem; }
.faq-answer { line-height: 1.6; color: #555; }

/* Footer */
.main-footer { background-color: var(--dark-bg); color: var(--text-light); padding: 60px 20px 20px; margin-top: 50px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { color: var(--soft-gold); font-size: 1.3rem; margin-bottom: 15px; font-family: 'Times New Roman', serif; }
.footer-text { margin: 5px 0; color: #ccc; }
.footer-link { color: #ccc; text-decoration: none; transition: color 0.3s; cursor: pointer; }
.footer-link:hover { color: var(--soft-gold); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list-item { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #444; padding-top: 20px; text-align: center; }
.footer-disclaimer { font-size: 0.85rem; color: #888; max-width: 800px; margin: 0 auto 15px; line-height: 1.5; }
.copyright-text { color: #888; font-size: 0.9rem; }

/* Modals */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 3000; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--creamy-beige); padding: 40px; border-radius: 10px; max-width: 600px; width: 90%; position: relative; max-height: 80vh; overflow-y: auto; color: var(--text-dark); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; color: var(--muted-olive); }
.modal-title { margin-bottom: 20px; color: var(--warm-taupe); border-bottom: 2px solid var(--soft-gold); padding-bottom: 10px; }
.modal-text { line-height: 1.6; margin-bottom: 10px; }
.modal-link { color: var(--muted-olive); text-decoration: underline; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--dark-bg); color: var(--text-light); padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 15px; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); z-index: 9000; transition: transform 0.5s; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-text { text-align: center; max-width: 800px; font-size: 0.95rem; }
.cookie-actions { display: flex; gap: 15px; }

/* Media Queries */
@media (max-width: 768px) {
    .desktop-nav, .header-action { display: none; }
    .hamburger-menu { display: flex; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.2rem; }
    .footer-container { text-align: center; }
    .cookie-actions { flex-direction: column; width: 100%; }
    .cookie-btn { width: 100%; }
}