/*======================================================
AAVERA STUDIO
Home Page CSS
Part 1
Announcement + Hero + Features
======================================================*/

/*=========================
Google Fonts
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/*=========================
Variables
==========================*/

:root{

    --primary:#C8A96A;
    --primary-dark:#b08d4e;

    --dark:#111111;
    --dark-light:#1a1a1a;

    --white:#ffffff;

    --text:#d8d8d8;
    --gray:#777777;

    --section:#181818;

    --radius:12px;

    --transition:.35s ease;

}


/*=========================
Reset
==========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:92%;
    max-width:1320px;
    margin:auto;

}


/*=========================
Announcement Bar
==========================*/

.announcement-bar{

    background:#000;
    color:#fff;

    height:44px;

    display:flex;
    align-items:center;

    overflow:hidden;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.announcement-slider{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:80px;

    font-size:14px;

    font-weight:500;

    color:#d6d6d6;

}

.announcement-item{

    white-space:nowrap;
    letter-spacing:.5px;

}


/*=========================
Hero
==========================*/

.hero-section{

    background:

    radial-gradient(circle at top right,
    rgba(200,169,106,.08),
    transparent 45%),

    linear-gradient(180deg,#121212,#050505);

    color:#fff;

    min-height:92vh;

    display:flex;
    align-items:center;

    position:relative;

    overflow:hidden;

}


.hero-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    right:-120px;
    top:-150px;

    background:

    radial-gradient(circle,
    rgba(200,169,106,.18),
    transparent 70%);

    border-radius:50%;

}


.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}


.hero-label{

    display:inline-block;

    color:var(--primary);

    border:1px solid rgba(200,169,106,.4);

    padding:10px 18px;

    border-radius:50px;

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:25px;

}


.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:1.05;

    font-weight:600;

    margin-bottom:20px;

}


.hero-content h1 span{

    display:block;

    color:var(--primary);

}


.hero-content p{

    color:#d0d0d0;

    font-size:18px;

    line-height:34px;

    max-width:540px;

    margin-bottom:40px;

}


.hero-buttons{

    display:flex;

    gap:18px;

}


/*=====================
Buttons
======================*/

.btn-primary{

    background:var(--primary);

    color:#111;

    padding:16px 42px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}


.btn-primary:hover{

    background:#fff;

    transform:translateY(-4px);

}


.btn-secondary{

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    padding:16px 40px;

    border-radius:8px;

    transition:.35s;

}


.btn-secondary:hover{

    background:#fff;

    color:#111;

}


/*=====================
Hero Image
======================*/

.hero-image{

    position:relative;

    text-align:right;

}

.hero-image img{

    width:90%;

    margin-left:auto;

    animation:floatBag 5s ease-in-out infinite;

    filter:

    drop-shadow(0 50px 70px rgba(0,0,0,.55));

}


.hero-image::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:

    radial-gradient(circle,
    rgba(200,169,106,.30),
    transparent 70%);

    right:80px;
    top:120px;

    z-index:-1;

}


/*=====================
Animation
======================*/

@keyframes floatBag{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=====================
Features
======================*/

.home-features{

    background:#0e0e0e;

    padding:35px 0;

    border-top:1px solid rgba(255,255,255,.05);

}


.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.feature-box{

    display:flex;

    align-items:center;

    gap:18px;

    color:#fff;

    padding:18px;

    transition:.35s;

    border-radius:12px;

}


.feature-box:hover{

    background:#181818;

    transform:translateY(-5px);

}


.feature-icon{

    width:62px;
    height:62px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    background:rgba(200,169,106,.12);

    color:var(--primary);

}


.feature-box h4{

    font-size:18px;

    margin-bottom:4px;

    color:#fff;

}


.feature-box p{

    color:#aaaaaa;

    font-size:14px;

}


/*=====================
Responsive
======================*/

@media(max-width:1200px){

.hero-content h1{

font-size:58px;

}

}


@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto;
margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:50px;

text-align:center;

}

.hero-image img{

width:70%;
margin:auto;

}

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.hero-section{

padding:70px 0;

min-height:auto;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;
line-height:30px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;
text-align:center;

}

.features-grid{

grid-template-columns:1fr;

}

.announcement-slider{

gap:35px;

font-size:12px;

}

.hero-image img{

width:95%;

}

}

/* FEATURES */


.features-section{

padding:50px 0;

border-bottom:1px solid #eee;

}



.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

text-align:center;

}



.feature-icon{

font-size:30px;

margin-bottom:15px;

color:#b08d57;

}



.feature-item h3{

font-size:16px;

text-transform:uppercase;

letter-spacing:1px;

margin-bottom:10px;

}



.feature-item p{

font-size:14px;

color:#777;

margin:0;

}




@media(max-width:768px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}


}

/* =========================
   CATEGORY SECTION
========================= */


.categories-section{

padding:80px 0;

}



.section-heading{

text-align:center;

margin-bottom:45px;

}



.section-heading h2{

font-family:Georgia,serif;

font-size:38px;

font-weight:500;

letter-spacing:2px;

margin-bottom:10px;

}



.section-heading p{

color:#777;

font-size:15px;

}





.categories-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}



.category-card{

position:relative;

overflow:hidden;

height:420px;

}



.category-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s ease;

}



.category-card:hover img{

transform:scale(1.08);

}




.category-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:35px 20px;

text-align:center;

background:linear-gradient(
transparent,
rgba(0,0,0,.75)
);

color:#fff;

}



.category-overlay h3{

font-size:26px;

font-family:Georgia,serif;

margin-bottom:15px;

}



.category-overlay a{

display:inline-block;

padding:10px 25px;

border:1px solid #fff;

color:#fff;

text-decoration:none;

font-size:13px;

text-transform:uppercase;

letter-spacing:1px;

transition:.3s;

}



.category-overlay a:hover{

background:#fff;

color:#111;

}





@media(max-width:768px){


.categories-grid{

grid-template-columns:repeat(2,1fr);

}



.category-card{

height:300px;

}


}



@media(max-width:480px){


.categories-grid{

grid-template-columns:1fr;

}


}

/* =========================
   NEW ARRIVALS
========================= */


.new-arrivals-section{

padding:80px 0;

background:#fafafa;

}




.products-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}




.product-card{

background:#fff;

position:relative;

overflow:hidden;

transition:.3s;

}



.product-card:hover{

transform:translateY(-5px);

}





.product-image{

position:relative;

overflow:hidden;

}




.product-thumb{

width:100%;

height:330px;

object-fit:cover;

transition:.5s;

}



.product-card:hover .product-thumb{

transform:scale(1.05);

}





.sale-badge{

position:absolute;

top:15px;

left:15px;

background:#111;

color:#fff;

padding:6px 12px;

font-size:12px;

text-transform:uppercase;

}





.product-info{

padding:20px;

text-align:center;

}



.product-info h3{

font-size:16px;

font-weight:500;

margin-bottom:10px;

}



.product-info h3 a{

color:#111;

text-decoration:none;

}




.product-price{

margin-bottom:18px;

font-size:16px;

}




.add-cart-btn{

display:inline-block;

border:1px solid #111;

padding:10px 25px;

font-size:13px;

text-decoration:none;

color:#111;

text-transform:uppercase;

transition:.3s;

}



.add-cart-btn:hover{

background:#111;

color:#fff;

}




.view-all-btn{

text-align:center;

margin-top:45px;

}



.view-all-btn a{

display:inline-block;

background:#111;

color:#fff;

padding:14px 40px;

text-decoration:none;

text-transform:uppercase;

letter-spacing:1px;

}




@media(max-width:992px){


.products-grid{

grid-template-columns:repeat(3,1fr);

}


}



@media(max-width:768px){


.products-grid{

grid-template-columns:repeat(2,1fr);

}


.product-thumb{

height:250px;

}


}



@media(max-width:480px){


.products-grid{

grid-template-columns:1fr;

}


}

/* =========================
   LUXURY BANNER
========================= */


.luxury-banner{

margin:80px 0;

}



.banner-image{

position:relative;

height:520px;

overflow:hidden;

}



.banner-image img{

width:100%;

height:100%;

object-fit:cover;

}



.banner-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:#fff;

}




.banner-content{

max-width:650px;

padding:20px;

}




.banner-content h2{

font-family:Georgia,serif;

font-size:55px;

font-weight:500;

letter-spacing:3px;

margin-bottom:20px;

}




.banner-content p{

font-size:18px;

line-height:1.7;

margin-bottom:35px;

}




.banner-content a{

display:inline-block;

padding:15px 40px;

border:1px solid #fff;

color:#fff;

text-decoration:none;

text-transform:uppercase;

letter-spacing:2px;

font-size:13px;

transition:.3s;

}



.banner-content a:hover{

background:#fff;

color:#111;

}





@media(max-width:768px){


.banner-image{

height:380px;

}



.banner-content h2{

font-size:35px;

}



.banner-content p{

font-size:15px;

}


}

/* =========================
   BEST SELLERS
========================= */


.best-sellers-section{

padding:80px 0;

background:#fff;

}



.best-sellers-section .product-card{

border:1px solid #eee;

}



.best-sellers-section .product-card:hover{

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/* =========================
   WHY US SECTION
========================= */


.why-us-section{

padding:80px 0;

background:#faf8f5;

}




.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}




.why-card{

background:#fff;

padding:40px 25px;

text-align:center;

transition:.4s;

border:1px solid #eee;

}




.why-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}




.why-icon{

font-size:35px;

color:#b08d57;

margin-bottom:20px;

}




.why-card h3{

font-family:Georgia,serif;

font-size:20px;

font-weight:500;

margin-bottom:15px;

}




.why-card p{

font-size:14px;

line-height:1.8;

color:#777;

margin:0;

}





@media(max-width:992px){


.why-grid{

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:480px){


.why-grid{

grid-template-columns:1fr;

}


}

/* =========================
   TESTIMONIALS
========================= */


.testimonials-section{

padding:80px 0;

background:#fff;

}




.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}




.testimonial-card{

padding:35px 30px;

background:#faf8f5;

text-align:center;

border-radius:2px;

transition:.3s;

}




.testimonial-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}




.stars{

color:#b08d57;

font-size:20px;

letter-spacing:3px;

margin-bottom:20px;

}




.testimonial-card p{

font-size:15px;

line-height:1.8;

color:#555;

font-style:italic;

margin-bottom:25px;

}




.testimonial-card h3{

font-family:Georgia,serif;

font-size:18px;

font-weight:500;

margin:0 0 8px;

}




.testimonial-card span{

font-size:13px;

color:#888;

}





@media(max-width:768px){


.testimonial-grid{

grid-template-columns:1fr;

}


}

/* =========================
   INSTAGRAM SECTION
========================= */


.instagram-section{

padding:80px 0;

background:#faf8f5;

}





.instagram-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:15px;

}




.instagram-item{

position:relative;

overflow:hidden;

aspect-ratio:1/1;

}




.instagram-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}




.instagram-item:hover img{

transform:scale(1.1);

}




.instagram-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

text-decoration:none;

font-size:14px;

opacity:0;

transition:.3s;

}



.instagram-item:hover .instagram-overlay{

opacity:1;

}





.instagram-follow{

text-align:center;

margin-top:40px;

}



.instagram-follow a{

display:inline-block;

padding:14px 35px;

border:1px solid #111;

color:#111;

text-decoration:none;

text-transform:uppercase;

letter-spacing:1px;

font-size:13px;

transition:.3s;

}



.instagram-follow a:hover{

background:#111;

color:#fff;

}





@media(max-width:992px){


.instagram-grid{

grid-template-columns:repeat(3,1fr);

}


}



@media(max-width:480px){


.instagram-grid{

grid-template-columns:repeat(2,1fr);

}


}

/* =========================
   NEWSLETTER SECTION
========================= */


.newsletter-section{

padding:80px 0;

background:#111;

color:#fff;

}




.newsletter-wrapper{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

}



.newsletter-content{

max-width:550px;

}



.newsletter-content h2{

font-family:Georgia,serif;

font-size:42px;

font-weight:500;

letter-spacing:2px;

margin-bottom:15px;

}



.newsletter-content p{

color:#ccc;

font-size:15px;

line-height:1.8;

margin:0;

}





.newsletter-form form{

display:flex;

}



.newsletter-form input{

width:320px;

height:55px;

padding:0 20px;

border:none;

outline:none;

font-size:14px;

}



.newsletter-form button{

height:55px;

padding:0 35px;

background:#b08d57;

color:#fff;

border:none;

cursor:pointer;

text-transform:uppercase;

letter-spacing:1px;

}




.newsletter-form button:hover{

background:#fff;

color:#111;

}





@media(max-width:768px){


.newsletter-wrapper{

display:block;

text-align:center;

}



.newsletter-content{

margin-bottom:30px;

}



.newsletter-content h2{

font-size:32px;

}



.newsletter-form form{

display:block;

}



.newsletter-form input{

width:100%;

}



.newsletter-form button{

width:100%;

margin-top:10px;

}


}