/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #333;
    background: #f9f9f9;
    line-height: 1.6;
}

/* ---------------- Navbar ---------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffce54;
    /* Gold */
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffce54;
}

/* Hamburger menu (mobile) */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        display: none;
        flex-direction: column;
        background: #111;
        width: 100%;
        /* text-align: center; */
        padding: 15px 10%;
        transition: 0.3s;
    }

    .nav-links.active {
        right: 0;
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffce54;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: #e6b93e;
}

/* Hero Carousel */
.carousel {
    position: relative;
    height: 90vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.slide .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
    /* readability */
}

.slide.active {
    opacity: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}


/* Collections */
.collections {
    padding: 60px 10%;
    background: #fff;
    text-align: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.collection-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: scale(1.05);
}

.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    padding: 80px 10%;
    background: linear-gradient(to right, #fafafa, #f4f4f4);
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e6b93e, #e1ba50);
    margin: 15px auto 0;
    border-radius: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e6b93e;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .quote {
        font-size: 1rem;
    }
}


/* Newsletter */
.newsletter {
    padding: 60px 10%;
    background: #111;
    color: #fff;
    text-align: center;
}

.newsletter form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.newsletter button {
    border: none;
    cursor: pointer;
}

/* About */
.about {
    padding: 80px 10%;
    background: linear-gradient(135deg, #fff 0%, #fdfdfd 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.about h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    /* Premium font */
    color: #222;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about .highlight {
    color: #d4af37;
    /* Gold highlight */
    font-weight: 600;
}

.about-values {
    list-style: none;
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
    margin-top: 10px;
    padding: 0;
}

.about-values .value {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.about-values .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #d4af37;
    /* gold accent */
}

.about-values span {
    font-size: 1rem;
    color: #444;
}

.about-image img {
    width: 100%;
    /* height: 30rem; */
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-position: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-values {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-values {
        justify-content: center;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* Featured Products */
.products {
    padding: 80px 10%;
    background: #fafafa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    /* Premium font */
    color: #222;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 600;
    color: #222;
}

.product-info .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-info .price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #b8860b;
    /* gold tone */
    margin-bottom: 15px;
}

.btn.add-to-cart {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffce54, #e6b93e);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #111;
}

.btn.add-to-cart:hover {
    background: linear-gradient(135deg, #e6b93e, #d1a832);
}

/* Final CTA */
.cta-container {
    margin-top: 50px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffce54, #e6b93e);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #e6b93e, #d1a832);
}

/* Why Us */
.why-us {
    padding: 80px 10%;
    background: linear-gradient(135deg, #fff 0%, #fdfdfd 100%);
    text-align: center;
}

.why-us h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    /* Premium serif font */
    margin-bottom: 10px;
    color: #222;
}

.why-us .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
    /* Gold accent */
}

.feature .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d4af37;
    /* Gold */
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 50px 10% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #ffce54;
    /* Gold accent */
}

.footer-col p,
.footer-col ul li a {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.socials a {
    display: inline-block;
    margin-right: 15px;
    color: #ffce54;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #bbb;
}