*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f3eee5;
    color:#200404;
    line-height:1.6;
    padding-top:90px;
}

/* ================= HEADER ================= */

header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 8%;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.25);

    box-shadow:0 8px 24px rgba(0,0,0,.12);

    transition:.3s;

}

.logo img{
    height:70px;
    width:auto;
    filter:drop-shadow(0 3px 8px rgba(0,0,0,.25));
}

nav a{
    margin-left:28px;
    text-decoration:none;
    color:#200404;
    font-weight:700;
    font-size:17px;
    transition:.3s;
}
nav{
    display:flex;
    align-items:center;
}

nav a:hover{
    color:#76523c;
}

.burger{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

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

.hero{

    height:90vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

    color:white;

    overflow:hidden;

}


.hero::before{

    content:"";

    position:absolute;

    top:-20px;

    left:-20px;

    right:-20px;

    bottom:-20px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("../images/portfolio105.jpg");

    background-size:cover;

    background-position:center;

    filter:blur(5px);

    transform:scale(1.05);

    z-index:0;

}


.hero-text{

    position:relative;

    z-index:1;

    max-width:850px;

}

.hero h1{

    font-family:'Playfair Display', serif;

    font-size:54px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

    color:white;

    letter-spacing:.5px;

}


.hero .subtitle{

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

    font-size:28px;

    font-weight:600;

    color:white;

    margin-bottom:25px;

}


.hero p{

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

    font-size:19px;

    font-weight:400;

    line-height:1.7;

    max-width:700px;

    margin:0 auto 35px;

}


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

.phone-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.phone-buttons a{

    display:inline-block;

    padding:16px 35px;

    background:#ffffff;

    color:#76523c;

    text-decoration:none;

    border-radius:40px;

    font-size:20px;

    font-weight:bold;

    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

.phone-buttons a:hover{

    background:#76523c;

    color:#ffffff;

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.3);

}

/* ================= SECTIONS ================= */

section{
    padding:80px 8%;
    text-align:center;
}

h2{
    font-size:36px;
    color:#76523c;
    margin-bottom:40px;
}

/* ================= CARDS ================= */

.cards,
.services{

    display:grid;

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

    gap:30px;

}

.card,
.services div{

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

}

.card:hover,
.services div:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.18);

}

/* ================= GALLERY ================= */

.gallery{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.gallery img{

    width:45%;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.gallery img:hover{

    transform:scale(1.03);

}

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

footer{

    background:#76523c;

    color:white;

    text-align:center;

    padding:25px;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

header{

    padding:15px 20px;

}

nav{

    display:none;

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    flex-direction:column;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}
nav a{

    margin:12px 0;

}

.burger{

    display:block;

}

.hero{

    height:auto;

    padding:100px 20px;

}

.hero h1{
    font-size:36px;
}

.hero .subtitle{
    font-size:22px;
}

.hero p{

    font-size:18px;

}

.phone-buttons{

    flex-direction:column;

    align-items:center;

}

.phone-buttons a{

    width:100%;

    max-width:320px;

}

.cards,
.services{

    grid-template-columns:1fr;

}

.gallery{

    flex-direction:column;

}

.gallery img{

    width:100%;

}

h2{

    font-size:28px;

}

}