/* Custom Properties */
:root {
    --primary-color: #b76e79; /* Rose Gold */
    --primary-light: #e6a8b1;
    --secondary-color: #ffe4e1; /* Blush Pink */
    --accent-color: #d4a373; /* Gold/Beige accent */
    --bg-color: #ffffff;
    --bg-alt: #fcf9f9; /* Off white / very light beige */
    --text-main: #333333;
    --text-light: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(183,110,121,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .brand-logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;bra
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
  
    scroll-margin-top: 80px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(183,110,121,0.3);
}

.btn-primary:hover {
    background-color: #9d5a64;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183,110,121,0.4);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
     padding-left: 30px;   /* reduce from default */
    padding-right: 20px;
}

.brand-logo {
     display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700
}
.logo-img {
    height: 80px;
}
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
     color: var(--primary-color);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-alt);
    padding-top: 80px; /* Accounts for fixed navbar */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    transform: translateX(-100px);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateX(100px);
}

.hero-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

/* About Section */
.about {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-bg {
    position: absolute;
    width: 85%;
    height: 100%;
    background-color: #faf0f2;
    border-radius: 40px;
    left: 0;
    top: 0;
    z-index: 0;
}

.about-img-1 {
    position: absolute;
    width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    left: 10%;
    bottom: -20px;
    z-index: 1;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    width: 50%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    right: -5%;
    top: 40px;
    z-index: 2;
    object-fit: cover;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    font-size: 3rem;
    color: #3d2f2f;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.about-content .highlight-italic {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 400;
}

.about-content p {
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content strong {
    color: #444;
}


.about-divider {
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
}

.about-stats {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0;
}

/* Collection Section */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183,110,121,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-us {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-block > p {
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.method-icon {
    font-size: 2rem;
}

.method-text strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-text span {
    color: var(--text-light);
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.footer-brand p {
    color: #ccc;
    max-width: 300px;
    
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: #9d5a64;
    transform: translateY(-5px);
}

/* Media Queries */
@media screen and (max-width: 900px) {
    .hero-container, .about-container, .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding-top: 40px;

        /* ✅ ADD THIS */
        transform: translateX(0);
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto 30px auto;

        /* ✅ ADD THIS */
        transform: translateX(0);
    }

    .about-images {
        grid-row: 1;
        height: 400px;
        margin-bottom: 60px;
    }

    .about-img-bg {
        width: 100%;
        border-radius: 30px;
    }

    .about-img-1 {
        left: 5%;
        width: 55%;
    }

    .about-img-2 {
        right: 0%;
        width: 45%;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content {
        padding-right: 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-image-wrapper {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 600px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 0;

        /* ✅ ADD THIS */
        transform: translateX(0);
    }

    .hero-container {
        text-align: center;
    }

    /* ✅ ADD THIS */
    .hero-image {
        transform: translateX(0);
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2, .about-text h2, .contact-info-block h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    .footer-brand {
    text-align: center;
}

.footer-brand p {
    margin: 0 auto;
    text-align: center;
}
}
@media screen and (max-width: 600px) {
    .logo-img {
        height: 40px;
    }
}
