/* ==========================================
   THOMAS BOLSENS
   PREMIUM WEBSITE
========================================== */

:root{

    --black:#0b0b0b;
    --black-light:#151515;

    --gold:#D4AF37;
    --gold-light:#E8C55A;

    --white:#ffffff;

    --grey:#bfbfbf;

    --border:rgba(255,255,255,.08);

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --radius:22px;

    --transition:.35s ease;

}

/* ==========================================
   RESET
========================================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--black);

    color:var(--white);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,1200px);

    margin:auto;

}

section{

    padding:120px 0;

}

/* ==========================================
   TYPOGRAPHY
========================================== */

.section-tag{

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:700;

}

.section-title{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(42px,5vw,70px);

    line-height:1.05;

    margin:20px 0;

}

.section-text{

    color:var(--grey);

    font-size:18px;

    max-width:720px;

}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 36px;

    background:var(--gold);

    color:black;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--gold-light);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 36px;

    border:1px solid var(--gold);

    border-radius:999px;

    color:var(--gold);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--gold);

    color:black;

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    position:fixed;

    top:25px;
    left:50%;

    transform:translateX(-50%);

    width:min(92%,1280px);

    z-index:999;

    background:rgba(12,12,12,.72);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 35px;

}

.logo img{

    width:110px;

}

nav{

    display:flex;

    gap:40px;

    align-items:center;

}

nav a{

    color:white;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

.menu-toggle{

    display:none;

    font-size:28px;

    color:white;

    cursor:pointer;

}

/* ==========================================
   HERO
========================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,.62),
        rgba(0,0,0,.72)
    ),
    url("images/hero.jpeg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:radial-gradient(circle at top right,
    rgba(212,175,55,.12),
    transparent 40%);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding-top:120px;

}

.eyebrow{

    display:inline-block;

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:.9rem;

    font-weight:700;

    margin-bottom:24px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(62px,8vw,110px);

    line-height:.95;

    margin-bottom:30px;

}

.hero p{

    max-width:620px;

    color:#d3d3d3;

    font-size:22px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================================
   ABOUT
========================================== */

.about{

    background:#101010;

}

.about-grid{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    object-position:center;

    border-radius:26px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

    transition:.45s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-content{

    max-width:620px;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

    line-height:1.05;

    margin:20px 0 30px;

}

.about-content p{

    color:#c8c8c8;

    font-size:18px;

    margin-bottom:22px;

}

.about-highlights{

    display:grid;

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

    gap:22px;

    margin:45px 0;

}

.highlight{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:24px;

    transition:.35s;

}

.highlight:hover{

    border-color:#D4AF37;

    transform:translateY(-6px);

}

.highlight h3{

    color:#D4AF37;

    margin-bottom:10px;

    font-size:20px;

}

.highlight p{

    margin:0;

    font-size:15px;

    color:#bdbdbd;

}

.about .btn-primary{

    margin-top:15px;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    background:#0b0b0b;

}

.services-grid{

    display:grid;

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

    gap:32px;

    margin-top:70px;

}

.service-card{

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:42px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:#D4AF37;

    transform:scaleY(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleY(1);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.service-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:28px;

}

.service-card h3{

    font-size:30px;

    margin-bottom:16px;

}

.service-card p{

    color:#bfbfbf;

    line-height:1.8;

}

/* ==========================================
   PORTFOLIO
========================================== */

.portfolio{

    background:#101010;

}

.portfolio-grid{

    display:grid;

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

    gap:32px;

    margin-top:70px;

}

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

}

.portfolio-item img{

    width:100%;

    height:430px;

    object-fit:cover;

    object-position:center 25%;

    transition:.55s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:34px;

    background:linear-gradient(to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.10));

    opacity:0;

    transition:.35s;

}

.portfolio-overlay h3{

    font-size:30px;

    margin-bottom:8px;

}

.portfolio-overlay p{

    color:#D4AF37;

}

.portfolio-item:hover img{

    transform:scale(1.08);

}

.portfolio-item:hover .portfolio-overlay{

    opacity:1;

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    background:#0b0b0b;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.contact-details{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:16px;

    font-size:18px;

}

.contact-item i{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#D4AF37;

    color:#111;

}

.contact-form{

    background:#171717;

    padding:45px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    padding:18px;

    border-radius:14px;

    margin-bottom:18px;

    font-family:inherit;

    font-size:16px;

}

.contact-form textarea{

    min-height:180px;

    resize:vertical;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#D4AF37;

}

.contact-form button{

    width:100%;

    border:none;

    cursor:pointer;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#080808;

    padding:70px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo img{

    width:120px;

    margin:0 auto 25px;

}

.footer h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:12px;

}

.footer p{

    color:#bdbdbd;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:30px 0;

}

.footer-social a{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#171717;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#D4AF37;

    transition:.3s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#111;

    transform:translateY(-4px);

}

.copyright{

    margin-top:25px;

    font-size:14px;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1024px){

    .about-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .services-grid,
    .portfolio-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    nav{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero h1{

        font-size:58px;

    }

    .about-grid{

        gap:45px;

    }

    .about-image img{

        height:450px;

    }

    .about-highlights{

        grid-template-columns:1fr;

    }

}

@media(max-width:600px){

    section{

        padding:80px 0;

    }

    .section-title{

        font-size:42px;

    }

    .hero h1{

        font-size:44px;

    }

    .hero p{

        font-size:18px;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

}