/* Reset */

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */
body{
    font-family:'Poppins', sans-serif;
    background:#f8f5f2;
    color:#333;
}


/* Header */
header {
    position: relative;
    height: 180px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}



/* Navigation */
nav a {
    margin-right: 30px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

nav a:hover{
    color:#c59d5f;
}

/* Navigation - Left */
nav {
    position: absolute;
    left: 40px;
    top: 60%;
    transform: translateY(-50%);
}

nav a {
    margin-right: 60px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}



/* Logo */
.logo a{
    text-decoration:none;

    font-size:34px;
    font-weight:700;

    color:#c59d5f;

    letter-spacing:3px;
}



.logo-section {
    position: relative;
}

/* Logo Image - Right */
.logo-image {
    position: absolute;
    top: 15px;
    right: 30px;
}

.logo-image img {
    width: 240px;
    height: auto;
}

/* CHAARVI - Center */
.logo-text {
    position: absolute;
    left: 50%;
    top: 40px;          /* fixed position from top */
    transform: translateX(-50%);
    text-align: center;
}

.logo-text a {
    text-decoration: none;
    font-size: 100px;
    font-weight: 700;
    color: #ff7a00; /*Orange */
    line-height: 1;
    letter-spacing: 3px;

}


/* COLLECTIONS - Dropdown Menu for Women's Collections, Men's Collections and Kid's Collections*/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: white;

    min-width: 220px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    border-radius: 8px;

    z-index: 999;
}

.dropdown-content a {
    display: block;

    padding: 12px 18px;

    text-decoration: none;

    color: #333;

    margin: 0;

    font-size: 16px;

    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #f8f5f2;
    color: #c59d5f;
}

.dropdown:hover .dropdown-content {
    display: block;
}



/* =====================================
   HERO BANNER
===================================== */

.hero {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}


.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Hide old overlay content */

.hero-overlay {
    display: none;
}





/* Home Content */
.home-content {
    padding: 80px 20px;
    background: #fffaf5;
}

.container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.home-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b0000;
}

.home-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #b68d40;
}


.home-content h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.home-content h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #c59d5f;
    margin: 10px auto 0;
}

.home-content h3 {
    color: #b8860b;
    font-size: 30px;
    font-weight: 600;
}


.home-content p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.9;
}

.home-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.home-content ul {
    list-style: none;
    max-width: 550px;
    margin: 25px auto;
    text-align: left;
    padding: 0;
}

.home-content li {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Buttons */
button{
    padding:15px 35px;

    border:none;

    background:black;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    background:#c59d5f;
}

/* Products */
.products{
    padding:100px 80px;
}

.products h2{
    text-align:center;

    margin-bottom:60px;

    font-size:44px;
}

.product-grid{
    display:flex;
    flex-direction:column;
    gap:50px;
}


.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: block;
    margin-bottom: 15px;
}

.product-card h3{
    text-align:center;
    font-size:36px;
    color:#8B0000;
    margin-bottom:40px;
    font-weight:600;
}

.product-card p{
    margin-top:10px;

    font-size:20px;

    color:#c59d5f;
}


/* IMAGE POP-UP */
.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}


/* PRODUCT CARD IMAGE */

.product-card img {
    width:100%;
    height:350px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}


/* COLLECTION LAYOUT */

.collection-item{
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    margin-bottom:0;
}

.collection-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.collection-item img{
    width:100%;
    height:320px;
    object-fit:contain;
    display:block;
    margin:auto;
}

.collection-item p{
    margin-top:12px;
    font-size:16px;
    color:#8B0000;
    font-weight:600;
    text-align:center;
}

.collection-section{
    margin-top:40px;
    margin-bottom:50px;
}

.collection-section h4{
    text-align:center;
    font-size:28px;
    color:#8B0000;
    margin:0 auto 30px;
    padding-bottom:10px;
    border-bottom:2px solid #d4af37;
    display:table;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:30px;
    margin-top:25px;
}


/* About */
.about{
    padding:100px 80px;

    background:white;

    text-align:center;
}

.about-content{
    max-width:900px;
    margin:auto;
}

.about h2{
    font-size:44px;

    margin-bottom:30px;
}

.about p{
    font-size:22px;

    line-height:1.8;
}

/* Newsletter */
.newsletter{
    padding:100px 20px;

    text-align:center;
}

.newsletter h2{
    font-size:42px;

    margin-bottom:20px;
}

.newsletter p{
    font-size:20px;

    margin-bottom:30px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:10px;

    flex-wrap:wrap;
}

.newsletter input{
    padding:15px;

    width:350px;

    border:1px solid #ccc;

    font-size:16px;
}



.about{
    border-top:1px solid #eee;
}

.contact{
    border-top:1px solid #eee;
}

.newsletter{
    border-top:1px solid #eee;
}



/* =====================================
   CONTACT SECTION
===================================== */

.contact{
    padding:100px 20px;
    background:#ffffff;
    text-align:center;
}

.contact-content{
    max-width:900px;
    margin:auto;
}

.contact h2{
    font-size:48px;
    margin-bottom:25px;
    color:#8b0000;
    font-weight:700;
}

.contact-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:15px;
}

.contact-details{
    margin-top:30px;
}

.contact-details p{
    font-size:22px;
}

.contact-details a{
    color:#c59d5f;
    text-decoration:none;
    font-weight:600;
}

.contact-details a:hover{
    text-decoration:underline;
}


/* WHATS APP */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
}


/* Footer */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
    font-size:16px;
}

footer a{
    color:#c59d5f;

    text-decoration:none;
}

/* Responsive */
@media(max-width:768px){

    header{
        flex-direction:column;
        padding:10px;
    }

    .logo-text a{
        font-size:28px;
    }

    .logo-image img{
        width:60px;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
        margin-top:10px;
    }

    nav a{
        margin:0;
        font-size:14px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .products,
    .about{
        padding:50px 15px;
    }

    .hero-banner{
        width:100%;
        height:auto;
    }
}