/* =====================================================
   PS CHOCOLATES
   Luxury White Theme
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#FAF8F5;

    color:#2B1E18;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}



/* ===========================================
NAVBAR
=========================================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

padding:18px 0;

background:rgba(28,18,12,.22);

backdrop-filter:blur(18px);

transition:.4s;

border-bottom:1px solid rgba(255,255,255,.08);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

width:72px;

transition:.4s;

filter:drop-shadow(0 8px 18px rgba(0,0,0,.25));

}

.logo img:hover{

    transform:scale(1.05);

}

nav ul{

    display:flex;

    gap:40px;

}

nav a{

color:#F8F4EE;

font-weight:500;

letter-spacing:1px;

position:relative;

transition:.35s;

}

nav a:hover{

color:#E6D2B5;

}
nav a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:#C69C6D;

transition:.35s;

}

nav a:hover::after{

width:100%;

}

.order-btn{

background:#6E4429;

padding:16px 34px;

border-radius:50px;

font-weight:600;

color:white;

transition:.35s;

box-shadow:0 15px 30px rgba(0,0,0,.20);

}

.order-btn:hover{

background:#8B5E3C;

transform:translateY(-4px);

}



/* ===========================================
HERO
=========================================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    filter:

    brightness(.75)

    contrast(1.10)

    saturate(.95);

    z-index:-2;

}

.overlay{

position:absolute;

inset:0;

background:

linear-gradient(

rgba(10,7,5,.38),

rgba(10,7,5,.55)

);

z-index:-1;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

    padding:20px;

}

.hero-logo{

    width:190px;

    margin:auto;

    margin-bottom:30px;

    filter:drop-shadow(0 10px 30px rgba(0,0,0,.45));

}

.tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.20);

    backdrop-filter:blur(12px);

    color:white;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero h1{

    font-family:'Cormorant Garamond', serif;

    font-size:96px;

    font-weight:700;

    color:#FFFDF8;

    line-height:1;

    letter-spacing:2px;

    margin-bottom:25px;

    text-shadow:
        0 8px 35px rgba(0,0,0,.45);

}
.hero p{

    max-width:700px;

    margin:auto;

    color:#F2ECE6;

    font-size:21px;

    line-height:1.8;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:#7A4B2E;

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.btn:hover{

    background:#9A6543;

    transform:translateY(-5px);

}

.btn-outline{

    padding:18px 42px;

    border:2px solid rgba(255,255,255,.9);

    color:white;

    border-radius:50px;

    transition:.4s;

}

.btn-outline:hover{

    background:white;

    color:#2B1E18;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    color:white;

    font-size:28px;

    animation:float 2s infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(10px);

}

100%{

transform:translateY(0);

}

}



/* ===========================================
SECTION TITLE
=========================================== */

section{

    padding:110px 8%;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#A66A3F;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    margin-top:15px;

    margin-bottom:20px;

}

.section-heading p{

    max-width:650px;

    margin:auto;

    color:#666;

}
/* ===========================================
PRODUCT COLLECTION
=========================================== */

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:40px;

}

.product-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #ECE5DB;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.14);

}

.product-image{

    height:340px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:35px;

}

.product-content span{

    color:#A66A3F;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

}

.product-content h3{

    margin:18px 0;

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

}

.product-content p{

    color:#666;

    margin-bottom:30px;

}

.product-content a{

    color:#5A3825;

    font-weight:600;

    transition:.3s;

}

.product-content a:hover{

    color:#A66A3F;

}



/* ===========================================
GIFT COLLECTION
=========================================== */

.gift-section{

    background:#F4EFE8;

}

.gift-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

}

.gift-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.gift-card:hover{

    transform:translateY(-12px);

}

.gift-card img{

    height:300px;

    object-fit:cover;

}

.gift-info{

    padding:35px;

}

.gift-info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:36px;

    margin-bottom:18px;

}

.gift-info p{

    color:#666;

    margin-bottom:30px;

}

.gift-info a{

    color:#5A3825;

    font-weight:600;

}



/* ===========================================
OUR STORY
=========================================== */

.story{

    background:white;

}

.story-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.story-image{

    overflow:hidden;

    border-radius:30px;

}

.story-image img{

    height:650px;

    object-fit:cover;

    transition:.7s;

}

.story-image:hover img{

    transform:scale(1.05);

}

.story-content span{

    color:#A66A3F;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

}

.story-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    margin:18px 0 30px;

    line-height:1.1;

}

.story-content p{

    color:#666;

    margin-bottom:40px;

    font-size:17px;

}

.story-content .btn{

    display:inline-block;

}
/* ===========================================
WHY CHOOSE US
=========================================== */

.why-section{
    background:#FAF8F5;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ECE5DB;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.why-card img{
    width:70px;
    margin:auto;
    margin-bottom:25px;
}

.why-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    font-size:15px;
}



/* ===========================================
INSTAGRAM
=========================================== */

.gallery{
    background:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.04);
}



/* ===========================================
NEWSLETTER
=========================================== */

.newsletter{
    background:#2B1E18;
    text-align:center;
    color:white;
}

.newsletter h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    margin-bottom:20px;
}

.newsletter p{
    color:#DDD;
    margin-bottom:35px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    width:380px;
    padding:18px;
    border:none;
    border-radius:50px;
    outline:none;
}

.newsletter button{
    border:none;
    background:#A66A3F;
    color:white;
    padding:18px 35px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.newsletter button:hover{
    background:#8B5E3C;
}



/* ===========================================
FOOTER
=========================================== */

footer{
    background:#1A120D;
    color:white;
    padding:90px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo img{
    width:120px;
    margin-bottom:20px;
}

.footer-logo p{
    color:#CFCFCF;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer-links ul li{
    margin-bottom:15px;
}

.footer-links a,
.footer-social a{
    color:#D8D8D8;
    transition:.3s;
}

.footer-links a:hover,
.footer-social a:hover{
    color:#C48A55;
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-contact p{
    margin-bottom:12px;
    color:#D8D8D8;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    color:#999;
}



/* ===========================================
RESPONSIVE
=========================================== */

@media(max-width:992px){

.nav-container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin:20px 0;
}

.hero h1{
    font-size:58px;
}

.hero p{
    font-size:18px;
}

.story-container{
    grid-template-columns:1fr;
}

.footer-container{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero{
    height:auto;
    min-height:100vh;
    padding:140px 20px 80px;
}

.hero-logo{
    width:140px;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.product-grid,
.gift-grid{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:42px;
}

.newsletter h2{
    font-size:40px;
}

.newsletter input{
    width:100%;
}

}
/* ===========================================
PREMIUM HERO ANIMATION
=========================================== */

.hero-logo{
    animation:logoFloat 5s ease-in-out infinite;
}

.hero h1{
    animation:fadeUp 1s ease forwards;
}

.hero p{
    animation:fadeUp 1.3s ease forwards;
}

.hero-buttons{
    animation:fadeUp 1.6s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes logoFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}