/* ======================================
   RÊVEUSE PARIS
   Luxury Perfume Website
====================================== */

/* Google Fonts
Cormorant Garamond
Montserrat
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#FAF8F5;
    color:#111;
    overflow-x:hidden;
}

/* =====================
   NAVBAR
===================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

.navbar ul li a{

position:relative;

text-decoration:none;

color:#111;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

font-weight:500;

}

.navbar ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#C8A96A;

transition:.35s;

}

.navbar ul li a:hover::after{

width:100%;

}

.logo img{

    height:70px;

}

.navbar ul{

    display:flex;
    list-style:none;
    gap:45px;

}

.navbar ul li a{

    text-decoration:none;
    color:#111;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:500;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#C8A96A;

}

/* =====================
   HERO
===================== */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding-left:8%;
    max-width:600px;
}

.hero-logo{
    width:120px;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    color:#eee;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 42px;
    background:#b68b3d;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.hero-btn:hover{
    background:#d4a44e;
}
/* ==========================
   PERFUME SECTION
========================== */

.perfume{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

    padding:120px 8%;

}

.reverse{

    flex-direction:row-reverse;

}

.perfume-text{

    flex:1;

}

.perfume-text h5{

    color:#C8A96A;
    letter-spacing:4px;
    font-size:14px;
    text-transform:uppercase;
    margin-bottom:15px;

}

.perfume-text h2{

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    margin-bottom:10px;

}

.perfume-text h3{

    color:#666;
    font-weight:500;
    margin-bottom:25px;

}

.perfume-text p{

    color:#555;
    font-size:17px;
    line-height:32px;
    max-width:520px;
    margin-bottom:35px;

}

.perfume-text a{

    display:inline-block;
    padding:15px 40px;

    border:1px solid #C8A96A;

    color:#C8A96A;

    text-decoration:none;

    border-radius:40px;

    transition:.3s;

}

.perfume-text a:hover{

    background:#C8A96A;
    color:white;

}

.perfume-image{

    flex:1;
    text-align:center;

}

.perfume-image img{

    width:100%;
    max-width:420px;

    transition:.5s;

}

.perfume-image img:hover{

    transform:translateY(-12px) scale(1.03);

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));

}
/* ==========================
   LUXURY EFFECTS
========================== */

section{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero-btn,
.perfume-text a{

    box-shadow:0 12px 30px rgba(200,169,106,.18);

}

.hero-btn:hover,
.perfume-text a:hover{

    transform:translateY(-3px);

}
/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    .navbar ul{

        display:none;

    }

    .hero{

        justify-content:center;
        text-align:center;

    }

    .hero-content h1{

        font-size:54px;

    }

    .perfume,
    .reverse{

        flex-direction:column;

        text-align:center;

    }

    .perfume-text p{

        margin:auto;
        margin-bottom:30px;

    }

    .perfume-text h2{

        font-size:52px;

    }

}
/* ==========================
   FOOTER
========================== */

footer{

background:#111;

color:white;

margin-top:120px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

padding:80px 8%;

}

.footer-logo img{

height:70px;

margin-bottom:25px;

}

.footer-logo p{

color:#bbb;

line-height:30px;

max-width:350px;

}

.footer-links h3,
.footer-contact h3{

margin-bottom:25px;

font-family:'Cormorant Garamond',serif;

font-size:30px;

color:#C8A96A;

}

.footer-links a{

display:block;

text-decoration:none;

color:#ddd;

margin-bottom:14px;

transition:.3s;

}

.footer-links a:hover{

color:#C8A96A;

padding-left:6px;

}

.footer-contact p{

color:#bbb;

margin-bottom:14px;

}

.copyright{

text-align:center;

padding:25px;

border-top:1px solid rgba(255,255,255,.08);

color:#888;

font-size:14px;

}

@media(max-width:900px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo p{

margin:auto;

}

}
/*=========================
SCROLL REVEAL
==========================*/

.hidden{

opacity:0;

transform:translateY(70px);

transition:1s ease;

}

.show{

opacity:1;

transform:translateY(0);

}
.perfume-image{

overflow:hidden;

}

.perfume-image img{

transition:.7s;

cursor:pointer;

}

.perfume-image img:hover{

transform:scale(1.08) rotate(-2deg);

filter:drop-shadow(0 25px 45px rgba(0,0,0,.18));

}
.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:1000;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
/* =========================
   RESPONSIVE NAVBAR
========================= */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
}

.logo a{
    color:#c8a96a;
    text-decoration:none;
    font-size:32px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.nav-links a:hover{
    color:#c8a96a;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.menu-btn{
    display:block;
}

.nav-links{
    position:fixed;
    top:0;
    left:-280px;
    width:260px;
    height:100vh;
    background:#111;
    display:flex;
    flex-direction:column;
    padding-top:90px;
    gap:30px;
    transition:.4s;
}

.nav-links.active{
    left:0;
}

.nav-links a{
    padding-left:30px;
    font-size:18px;
}

}
/* NEWSLETTER */

.newsletter{
    background:#f8f2e8;
    padding:90px 20px;
    text-align:center;
}

.small-title{
    font-size:22px;
    margin-bottom:10px;
    color:#555;
}

.newsletter h2{
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.news-text{
    max-width:650px;
    margin:0 auto 35px;
    color:#555;
    line-height:1.8;
}

.newsletter-form{
    max-width:600px;
    margin:auto;
    display:flex;
}

.newsletter-form input{
    flex:1;
    padding:18px;
    border:1px solid #999;
    border-right:none;
    font-size:16px;
    outline:none;
}

.newsletter-form button{
    width:70px;
    border:none;
    background:#111;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#c8a96a;
    color:#111;
}

.privacy{
    margin-top:18px;
    color:#666;
    font-size:14px;
}

@media(max-width:768px){

.newsletter h2{
    font-size:38px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input{
    border-right:1px solid #999;
    margin-bottom:10px;
}

.newsletter-form button{
    width:100%;
    height:55px;
}

}
@media(max-width:768px){

.hero{
    height:80vh;
}

.hero-content{
    text-align:center;
    align-items:center;
    padding:20px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

.hero-logo{
    width:90px;
}

}
/* Mobile Devices */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}