/* ==========================================
                RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* ==========================================
                CULORI
========================================== */

:root{

    --gold:#c89b3c;
    --black:#0d0d0d;
    --dark:#141414;
    --white:#ffffff;
    --text:#cfcfcf;

}

/* ==========================================
                CONTAINER
========================================== */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ==========================================
                NAVBAR
========================================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:28px 80px;

    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);

    z-index:999;
}

.logo{

    font-size:22px;
    font-weight:500;
    color:var(--gold);

}

.nav-links{

    display:flex;
    list-style:none;
    gap:40px;

}

.nav-links a{

    color:white;
    text-decoration:none;
    font-size:17px;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--gold);

}

/* ==========================================
                HERO
========================================== */

.hero{

    width:100%;
    height:100vh;

    background-image:url("../images/hero.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

}

.hero-content{

    width:600px;

    margin-left:80px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:82px;
    font-weight:500;

    color:var(--gold);

    line-height:1.05;

    margin-bottom:25px;

}

.hero-content p{

    font-size:26px;

    color:white;

    line-height:1.6;

}

/* ==========================================
            FEATURES
========================================== */

.features{

    background:#0d0d0d;

    padding:120px 0;

}

.features h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:500;

    color:white;

}

.features h2 span{

    color:var(--gold);

}

.gold-line{

    width:90px;
    height:2px;

    background:var(--gold);

    margin:30px auto 70px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.features .cards{

    grid-template-columns:repeat(4,1fr);

}

.features .cards > .card:not(.training-card){

    grid-column:span 2;

}

.card{

    background:#151515;

    padding:50px;

    border-radius:18px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

.icon{

    font-size:40px;

    margin-bottom:25px;

}

.card h3{

    font-family:'Cormorant Garamond',serif;

    color:var(--gold);

    font-size:38px;

    margin-bottom:20px;

}

.card p{

    color:#cfcfcf;

    line-height:1.8;

    font-size:18px;

}

.training-card{

    grid-column:2 / span 2;
    width:100%;
    margin:0;
    padding:38px;

}

.training-card .icon{

    font-size:34px;
    margin-bottom:16px;

}

.training-card h3{

    font-size:34px;
    margin-bottom:14px;

}

.training-list{

    display:grid;
    gap:8px;
    list-style:none;

}

.training-list li{

    position:relative;
    padding-left:16px;
    color:var(--text);
    font-size:15px;
    line-height:1.5;

}

.training-list li::before{

    content:'•';
    position:absolute;
    left:0;
    color:var(--gold);

}

/* ==========================================
            SECTIUNI GOALE
========================================== */

.gallery,
.services,
.contact{

    padding:120px 0;

    background:#111;

}
/* ==========================================
                GALERIE
========================================== */

.gallery{

    background:#0d0d0d;
    padding:120px 0;

}

.gallery h2{

    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    font-weight:500;
    color:#fff;

}

.gallery h2 span{

    display:block;
    color:var(--gold);
    margin-top:10px;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;

}

.gallery-item{

    overflow:hidden;
    border-radius:18px;
    background:#151515;
    height:420px;
    cursor:pointer;
    transition:.35s;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.45s;

}

.gallery-item:hover{

    transform:translateY(-6px);
    box-shadow:0 0 35px rgba(200,155,60,.18);

}

.gallery-item:hover img{

    transform:scale(1.07);

}
/* ==========================================
                CONTACT
========================================== */

.contact{

    background:#111;

    padding:120px 0;

}

.contact h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:500;

    color:var(--gold);

}

.contact h2 span{

    display:block;

    margin-top:10px;

    color:white;

}
.contact a{

    color:var(--gold);

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.contact a:hover{

    color:white;

}
/* ==========================================
                FOOTER
========================================== */

footer{

    background:black;

    padding:40px;

}

/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width:900px){

.navbar{

    padding:20px;

    flex-direction:column;

    gap:20px;

}

.hero-content{

    width:90%;

    margin:0 auto;

}

.hero-content h1{

    font-size:58px;

}

.cards{

    grid-template-columns:1fr;

}

.features .cards{

    grid-template-columns:1fr;

}

.features .cards > .card:not(.training-card){

    grid-column:auto;

}

.training-card{

    grid-column:auto;
    max-width:none;
    padding:32px;

}

}

/* Florentina Pascu Hair Stylist */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-family:'Cormorant Garamond',serif;
    font-size:23px;
    font-weight:600;
    line-height:.9;
}

.logo img{
    width:54px;
    height:54px;
    object-fit:cover;
    object-position:center 40%;
    border-radius:50%;
}

.logo small{
    font-family:'Poppins',sans-serif;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero{
    position:relative;
    background-image:url("../images/hero-florentina.jpeg");
    background-position:center 48%;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.56) 45%,rgba(0,0,0,.1) 100%);
}

.hero-content{
    position:relative;
    z-index:1;
}

.hero-button{
    display:inline-block;
    margin-top:28px;
    padding:14px 24px;
    border:1px solid var(--gold);
    color:#111;
    background:var(--gold);
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s;
}

.hero-button:hover{
    background:transparent;
    color:var(--gold);
}

.services h2{
    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    font-weight:500;
    color:#fff;
}

.services h2 span{
    display:block;
    color:var(--gold);
    margin-top:10px;
}

.services-cards{
    grid-template-columns:repeat(3,1fr);
}

.services-cards .card{
    padding:42px;
}

.services-note{
    max-width:820px;
    margin:55px auto 0;
    text-align:center;
    color:var(--text);
    font-size:17px;
    line-height:1.8;
}

footer p{
    color:#aaa;
    text-align:center;
    font-size:14px;
}

@media(max-width:900px){
    .services-cards{
        grid-template-columns:1fr;
    }
    .logo{
        font-size:20px;
    }
    .logo img{
        width:48px;
        height:48px;
    }
}
