/* =========================
   FIFTH AVENUE WEBSITE
   VERSION 1
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.8;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
NAVBAR
========================= */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar{

    width:90%;
    max-width:1300px;

    margin:auto;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo h1{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    font-weight:600;

}

.logo p{

    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#888;

}

nav ul,
.navbar ul{

    display:flex;

    gap:35px;

    list-style:none;

}

.navbar ul li a{

    color:#333;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.navbar ul li a:hover{

    color:#b48a4b;

}

.whatsapp-btn{

    padding:12px 26px;

    background:#111;

    color:white;

    border-radius:40px;

}

.whatsapp-btn:hover{

    background:#b48a4b;

}

/* =========================
HERO
========================= */

.hero{

    width:90%;

    max-width:1300px;

    margin:70px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:1.05;

    margin-bottom:25px;

}

.hero-content p{

    color:#666;

    font-size:18px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    padding:15px 34px;

    background:#111;

    color:white;

}

.secondary-btn{

    padding:15px 34px;

    border:1px solid #111;

    color:#111;

}

.primary-btn:hover{

    background:#b48a4b;

}

.secondary-btn:hover{

    background:#111;

    color:white;

}

.hero-image img{

    border-radius:10px;

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/* =========================
SECTIONS
========================= */

section{

    padding:90px 0;

}

section h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin-bottom:30px;

}

section p{

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#666;

}

/* =========================
COLLECTIONS
========================= */

.collection-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.collection-card{

    background:white;

    overflow:hidden;

    border-radius:10px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.collection-card:hover{

    transform:translateY(-8px);

}

.collection-card img{

    height:350px;

    object-fit:cover;

}

.collection-card h3{

    padding:20px;

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

}

/* =========================
BOUTIQUE
========================= */

#boutique{

    background:#faf8f4;

}

/* =========================
CONTACT
========================= */

.social-links{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.social-links a{

    padding:12px 26px;

    border:1px solid #222;

    color:#222;

}

.social-links a:hover{

    background:#111;

    color:white;

}

/* =========================
FOOTER
========================= */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:40px;

}

/* =========================
MOBILE
========================= */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-content h1{

font-size:54px;

}

.navbar{

flex-direction:column;

height:auto;

padding:20px 0;

gap:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.collection-grid{

grid-template-columns:1fr;

}

.hero-buttons{

justify-content:center;

}

}

@media(max-width:600px){

.hero-content h1{

font-size:42px;

}

section h2{

font-size:38px;

}

.primary-btn,
.secondary-btn{

display:block;

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

}
/* ==========================
FLOATING WHATSAPP
========================== */

.floating-whatsapp{

position:fixed;

bottom:30px;

right:30px;

background:#25D366;

color:white;

padding:18px 28px;

border-radius:60px;

font-weight:600;

font-size:16px;

box-shadow:0 12px 30px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.08);

background:#20b85a;

}

@media(max-width:768px){

.floating-whatsapp{

bottom:20px;

right:20px;

padding:15px 22px;

font-size:15px;

}

}
/* ==========================
GOOGLE MAP
========================== */

.map-container{

margin-top:40px;

border-radius:12px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.map-container iframe{

display:block;

width:100%;

}