:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2c2c2c; /* Charcoal */
    --bg-color: #fdfbf7; /* Cream */
    --text-color: #006a4e;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 5px 5%;
    align-items: center;
    min-height: 8vh;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover, .active-link {
    color: var(--primary-color) !important;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    display: inline-block;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Brands Bar */
.brands-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-scroll {
    display: flex;
    gap: 40px;
    color: var(--primary-color);
}

/* Section Common */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-hero .slogan {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.intro-text {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary-color);
}

.value-divider {
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.highlight-text {
    margin-top: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 20px 0;
    font-style: italic;
}

.sensory {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 15px;
}

.social-icons {
    margin: 20px 0 40px 0;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
}

.newsletter-box {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    max-width: 600px;
    margin: 30px auto 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 15px;
    border: 1px solid #ccc;
}

/* Footer */
footer {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 980px) {
    .nav-links {
        width: 50%;
    }

    .nav-links {
        position: absolute;
        right: 30px;
        height: 50vh;
        top: 12vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 30%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 20px;
    }
    
    .brands-scroll{
        gap: 30px;
        font-size: 0.7rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
    
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 20px;
        height: 50vh;
        top: 10vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 30%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 10px;
    }

    .brands-scroll{
        gap: 20px;
        font-size: 0.7rem;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 500px) {
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .brands-scroll{
        gap: 20px;
        font-size: 0.7rem;
    }

    .nav-links {
        right: 30px;
        top: 12vh;
        width: 50%;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero .slogan {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .newsletter-box {
        padding: 20px;
    }
    
    .footer-content {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 20px;     
    }

    .footer-bottom {
        width: 70%;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
        padding-top: 20px;
        font-size: 0.8rem;
        color: #777;
    }
}
