/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:linear-gradient(
        180deg,
        #faf7fc,
        #f7f0fc,
        #ffffff
    );
    color:#333;
}

/* =========================
   HEADER
========================= */

header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 5%;

    background:linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2,
        #e91e63
    );

    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

/* =========================
   LOGO
========================= */

.logo{
    font-size:25px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:#ffd6f5;

    cursor:pointer;

    animation:premiumFloat 4s ease-in-out infinite;
}

.logo:hover{
    color:#ffffff;
}

@keyframes premiumFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }
}

/* =========================
   NAVIGATION
========================= */

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#ffffff;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#ffd6f5;
}

header {
    background: #6a0dad;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 70px;
    height: auto;
}

.logo span {
    color: #f1eaea;   /* White text */
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}
/* =========================
   HERO BANNER
========================= */

.hero{
    width:95%;
    display:flex;
    justify-content:center;   /* Horizontal center */
    align-items:center;       /* Vertical center */
    padding:30px 0;
    margin:0 auto;
}
.hero::before{
    content:"";

    position:absolute;

    width:80%;
    height:45%;

    background:linear-gradient(
        90deg,
        #ff4fd8,
        #9c27b0,
        #ff4fd8
    );

    border-radius:25px;

    filter:blur(35px);

    opacity:.20;

    z-index:-1;

    animation:glowMove 6s infinite;
}

.hero img{
    display:block;

    width:75%;
    
    max-width:1100px;

    height:auto;

    margin:0 auto;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(123,31,162,.25);

    animation:premiumFloat 4s ease-in-out infinite;
}
    
.hero img:hover{
    transform:scale(1.02);

    box-shadow:0 20px 40px rgba(233,30,99,0.35);
}

@keyframes bannerFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }
}

@keyframes glowMove{

    0%{
        opacity:.15;
    }

    50%{
        opacity:.35;
    }

    100%{
        opacity:.15;
    }
}

/* =========================
   SECTION TITLES
========================= */

.categories h2,
.products h2,
.about h2{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;

    color:#7b1fa2;
}

/* =========================
   CATEGORIES
========================= */

.categories{
    padding:70px 8%;
}

.category-container{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card{
    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.4s;

    animation:fadeUp 1s ease;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 30px rgba(156,39,176,0.25);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    padding:18px;

    color:#7b1fa2;
}

/* =========================
   PRODUCTS
========================= */

.products{
    padding:70px 8%;
    background:#ffffff;
}

.product-container{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.product-card{
    background:#fff;

    padding:15px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.4s;

    animation:fadeUp 1s ease;
}

.product-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 30px rgba(156,39,176,0.25);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
}

.product-card h3{
    margin-top:15px;
    color:#7b1fa2;
}

.product-card p{
    margin:12px 0;

    font-size:20px;

    color:#e91e63;

    font-weight:bold;
}

.product-card button{
    padding:12px 28px;

    border:none;

    border-radius:25px;

    cursor:pointer;

    color:#fff;

    background:linear-gradient(
        135deg,
        #7b1fa2,
        #e91e63
    );

    transition:0.3s;
}

.product-card button:hover{
    transform:scale(1.05);
}

/* =========================
   FADE ANIMATION
========================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   ABOUT
========================= */

.about{
    padding:70px 10%;
    text-align:center;
}

.about p{
    max-width:800px;
    margin:auto;

    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
    margin-top:30px;

    padding:25px;

    text-align:center;

    color:#fff;

    background:linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2,
        #e91e63
    );
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#9c27b0;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#f3e5f5;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    header{
        flex-direction:column;
    }

    .logo{
        margin-bottom:15px;
        font-size:26px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    nav ul li{
        margin:8px;
    }

    .hero img{
        width:100%;
    }

    .categories h2,
    .products h2,
    .about h2{
        font-size:30px;
    }
}

@media(max-width:480px){

    .logo{
        font-size:22px;
        letter-spacing:1px;
    }

    nav ul li a{
        font-size:14px;
    }

    .card img,
    .product-card img{
        height:200px;
    }
}

.page-banner{
    background:linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2,
        #e91e63
    );

    color:#fff;
    text-align:center;

    padding:60px 20px; /* Reduced from 80px */

    margin-top:0;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:20px;
}



/* =========================
   PERFUME PAGE BANNER
========================= */

.page-banner{
    background:linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2,
        #e91e63
    );

    color:#fff;
    text-align:center;

    padding:60px 20px;
}

.page-banner h1{
    font-size:50px;
    font-weight:800;
    margin-bottom:15px;

    animation:fadeInDown 1s ease;
}

.page-banner p{
    font-size:20px;
    opacity:0.95;

    animation:fadeInUp 1s ease;
}

/* =========================
   PERFUME PRODUCTS
========================= */

.product-card{
    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    transition:0.4s;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.product-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 30px rgba(233,30,99,0.25);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;

    transition:0.5s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-card h3{
    color:#7b1fa2;
    margin-top:15px;
    font-size:22px;
}

.product-card p{
    color:#e91e63;
    font-size:22px;
    font-weight:bold;
    margin:10px 0;
}

.product-card button{
    margin:15px 0 20px;

    padding:12px 28px;

    border:none;

    border-radius:30px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #9c27b0,
        #e91e63
    );

    cursor:pointer;

    transition:0.3s;
}

.product-card button:hover{
    transform:scale(1.05);
}

/* =========================
   PERFUME CATEGORIES
========================= */

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 30px rgba(156,39,176,0.25);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    padding:18px;

    color:#7b1fa2;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeInDown{

    from{
        opacity:0;
        transform:translateY(-40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeInUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .page-banner h1{
        font-size:34px;
    }

    .page-banner p{
        font-size:16px;
    }

    .product-card img{
        height:220px;
    }
}




/* =========================
   GIFTS PAGE BANNER
========================= */

.page-banner{

    background:linear-gradient(
        135deg,
        #4a148c,
        #7b1fa2,
        #e91e63
    );

    color:#fff;

    text-align:center;

    padding:60px 20px;

    margin:0;

    box-shadow:
    0 8px 25px rgba(123,31,162,0.25);
}


.page-banner h1{

    font-size:48px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:15px;

    animation:giftTitle 1s ease;
}


.page-banner p{

    font-size:20px;

    font-weight:500;

    opacity:.95;

    animation:giftText 1.5s ease;

}


/* Banner Animations */

@keyframes giftTitle{

    from{
        opacity:0;
        transform:translateY(-30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


@keyframes giftText{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* =========================
   GIFTS ABOUT SECTION
========================= */


.about{

    padding:60px 10%;

    text-align:center;

    background:#faf7fc;

}


.about h2{

    font-size:36px;

    color:#7b1fa2;

    margin-bottom:20px;

}


.about p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    font-size:18px;

    color:#555;

}


/* =========================
   GIFT CARDS
========================= */


.product-card{

    background:#fff;

    border-radius:18px;

    padding:15px;

    text-align:center;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

    transition:.4s;

}


.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 15px 30px rgba(233,30,99,.25);

}


.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:15px;

}


.product-card h3{

    margin:15px 0;

    color:#4a148c;

}


.product-card p{

    color:#e91e63;

    font-size:20px;

    font-weight:bold;

}


/* Button */

.product-card button{

    margin-top:10px;

    padding:12px 30px;

    border:none;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #9c27b0,
        #e91e63
    );

    color:white;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}


.product-card button:hover{

    transform:scale(1.05);

    box-shadow:
    0 8px 20px rgba(233,30,99,.35);

}



/* =========================
   MOBILE
========================= */


@media(max-width:768px){

    .page-banner h1{

        font-size:32px;

    }


    .page-banner p{

        font-size:16px;

    }


    .about{

        padding:40px 5%;

    }

}



/* =========================
   CONTACT PAGE
========================= */

.contact-section{
    padding:80px 10%;
    background:#f8f9fa;
}

.contact-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.contact-info,
.contact-form{
    flex:1;
    min-width:300px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2,
.contact-form h2{
    margin-bottom:20px;
    color:#333;
}

.contact-info p{
    margin-bottom:15px;
    color:#555;
    line-height:1.8;
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    background:#222;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#555;
}