/* --- 1. VARIABLES & RESET --- */
:root {
    /* Palette theo Figma */
    --primary-dark: #513C2E;
    --accent-wood: #B1967F;
    --text-gray: #666666;      /* About desc */
    --text-light-gray: #8C7E74; /* Footer/Span */
    --text-sub: #6B7280;       /* Product desc */
    --bg-light: #F7F2EE;
    --white: #FFFFFF;

    /* Gradients */
    --grad-tan: linear-gradient(135deg, #BEA48E 0%, #BCA089 100%);
    --grad-dark: linear-gradient(135deg, #513C2E 0%, #3A2B21 100%);
    --grad-hero-btn: linear-gradient(88deg, #BEA48E 0%, #9C826D 100%);
    --grad-submit: linear-gradient(90deg, #BEA48E 0%, #746456 100%);
    --grad-contact-bg: linear-gradient(135deg, #F7F2EE 0%, #E8DACD 100%);
    --grad-feature: linear-gradient(180deg, #F7F2EE 0%, #FFFFFF 100%);

    --btn-radius: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 59px;
}

* { margin: 0; padding: 0; box-sizing: border-box; list-style: none; }
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--primary-dark);
    scroll-behavior: smooth;
}
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 85%; margin: 0 auto; padding: 0 20px; }

/* --- 2. NAVBAR SECTION --- */
.navbar {
    background-color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 95%;  }
.logo-wrapper { display: flex; align-items: center; gap: 10px; flex-shrink: 0;}
.logo-font { font-family: 'Bungee', sans-serif;}
.logo-wrapper img { height: 35px; width: auto; display: block; }

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.nav-right-group { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 5px; margin-right: 10px; }
.nav-links li a {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary-dark);
    border-radius: var(--btn-radius);
    transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
    background: var(--primary-dark);
    color: var(--white) !important;
    font-weight: bold;
}

.menu-toggle { display: none; font-size: 1.3rem; color: var(--primary-dark); cursor: pointer; padding: 5px; }

/* Language Selector */
.custom-select { position: relative; width: 60px; cursor: pointer; user-select: none; }
.select-trigger { padding: 6px 10px; background: #F5F5F5; border-radius: var(--btn-radius); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.select-options { position: absolute; top: calc(100% + 10px); right: 0; background: var(--white); border-radius: var(--btn-radius); box-shadow: 0 10px 25px rgba(0,0,0,0.1); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); min-width: 70px; }
.custom-select.open .select-options { opacity: 1; visibility: visible; transform: translateY(0); }
.option { padding: 8px; font-size: 0.75rem; text-align: center; font-weight: bold; }
.option:hover { background: var(--primary-dark); color: var(--white); }


/* --- 9. FOOTER SECTION --- */
.footer-section { padding: 80px 0 30px; background-color: var(--white); border-top: 1px solid #F0EAE5; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #F0EAE5; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo img { height: 35px; }
.logo-text { font-size: 1.1rem; font-weight: bold; color: var(--primary-dark); letter-spacing: 0.5px; }

.company-desc { font-size: 0.85rem; color: var(--text-light-gray); line-height: 1.6; }
.footer-title { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 25px; }

.footer-links li, .contact-list li { margin-bottom: 12px; display: flex; align-items: flex-start; }
.footer-links a, .contact-list span { text-decoration: none; color: var(--text-light-gray); font-size: 0.85rem; line-height: 1.5; }
.contact-list i { color: var(--primary-dark); margin-top: 4px; margin-right: 12px; width: 15px; text-align: center; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 25px; }
.copyright { font-size: 0.75rem; color: #A3968C; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { color: #A3968C; font-size: 1.1rem; }

.body-page{
    /*padding: 20px;*/

    background: linear-gradient(
            180deg,
            #F7F2EE 0%,
            #FFFFFF 50%,
            #F2E2D5 100%
    );


    color: #513C2E;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.breadcrumb{
    padding: 20px 0 20px 0;
    margin-bottom: 20px;font-size: medium;
}

html { font-size: 20px; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { max-width: 100%; margin: 0 auto; padding: 0 20px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; align-items: flex-start; }

    /* Responsive Buttons in other sections */
    .btn-about-more, .btn-submit {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        width: 100%;
        text-align: center;
    }

    html { font-size: 18px; }
}

/* Nav Mobile Menu */
.nav-links.show {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: white;
    padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ============================================
   ANIMATION SYSTEM (Global)
   ============================================ */

/* --- Hero Stagger Reveal (Page Load) --- */
.hero-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.hero-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Fade In Up (Scroll) --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    opacity: 0;
    will-change: opacity, transform;
}
.animate-fade-in.in-view {
    animation: fadeInUp 1s ease forwards;
}

/* --- Float (Continuous) --- */
@keyframes showcaseFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.float-animation.float-active {
    animation: showcaseFloat 5s ease-in-out infinite;
}

/* --- Glow Pulse for CTA (One-time) --- */
@keyframes ctaGlowPulse {
    0%   { box-shadow: 0 5px 15px rgba(190, 164, 142, 0.2); }
    50%  { box-shadow: 0 15px 45px rgba(190, 164, 142, 0.6), 0 0 25px rgba(190, 164, 142, 0.3); }
    100% { box-shadow: 0 5px 15px rgba(190, 164, 142, 0.2); }
}
.cta-btn.glow-pulse {
    animation: ctaGlowPulse 1.5s ease;
}

/* --- Modal / Toast Scale In --- */
@keyframes modalIn {
    from { transform: translateY(-150%) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.toast-message.show {
    animation: modalIn 0.3s ease;
}

/* --- Header Shadow on Scroll --- */
.navbar {
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in { opacity: 1; animation-duration: 0.01ms !important; }
    .animate-fade-in.in-view { animation-duration: 0.01ms !important; }
    .hero-reveal { opacity: 1; transform: none; transition: none; }
    .float-animation.float-active { animation: none; }
    .cta-btn.glow-pulse { animation: none; }
}

