*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:white;
    font-family:'Oswald', Arial, Helvetica, sans-serif;
    line-height:1.6;
}

/* HEADER */

.top-header{
    width:100%;
    background:#050505;
    border-bottom:1px solid #222;
    padding:12px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.header-brand img{
    width:45px;
}

.header-brand span{
    font-size:1rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

nav{
    display:none;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:.95rem;
    letter-spacing:1px;
}

nav a:hover{
    color:#c40000;
}

/* HERO */

.hero{
    min-height:85vh;

    background:
        linear-gradient(
            rgba(0,0,0,.85),
            rgba(0,0,0,.92)
        ),
        url("images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:70px 20px;
}

.hero-content{
    max-width:950px;
}

.hero-logo{
    width:420px;
    max-width:92%;
    margin-bottom:20px;
}

.hero h1{
    font-size:2.3rem;
    line-height:1.1;
    letter-spacing:3px;
    margin-bottom:15px;
}

.location{
    color:#c40000;
    font-size:1.3rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:8px;
}

.tagline{
    color:#cccccc;
    font-family:Arial, Helvetica, sans-serif;
    margin-bottom:28px;
}

/* BUTTONS */

.hero-buttons,
.contact-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    color:white;
    padding:14px 30px;
    border-radius:4px;
    font-weight:700;
    letter-spacing:1px;
    min-width:120px;
    text-align:center;
    transition:.25s;
}

.btn:hover{
    transform:translateY(-2px);
    opacity:.9;
}

.red{
    background:#c40000;
}

.dark{
    background:#262626;
    border:1px solid #444;
}

.facebook{
    background:#1877f2;
}

/* ABOUT */

.about-section{
    background:#0c0c0c;
    padding:80px 20px;
}

.about-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.about-content h2,
.services-section h2,
.gallery-section h2,
.contact-section h2{
    font-size:2.2rem;
    margin-bottom:20px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-gallery{
    display:grid;
    gap:20px;
    margin:40px 0;
}

.about-gallery img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:6px;
    border:2px solid #222;
}

.about-content p{
    font-family:Arial, Helvetica, sans-serif;
    color:#dddddd;
    margin-bottom:18px;
    font-size:1rem;
}

.big-line{
    font-family:'Oswald', Arial, sans-serif !important;
    color:white !important;
    font-size:1.5rem !important;
    font-weight:700;
}

/* SERVICES */

.services-section{
    background:#111;
    padding:70px 20px;
    text-align:center;
}

.service-grid{
    max-width:1000px;
    margin:30px auto 0;
    display:grid;
    gap:15px;
}

.service-card{
    background:#1e1e1e;
    border-left:4px solid #c40000;
    padding:22px;
    text-align:left;
    font-weight:700;
    letter-spacing:.5px;
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-4px);
    background:#292929;
}

/* GALLERY */

/* GALLERY */

.gallery-section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    text-align:center;
}

.gallery-section p{
    color:#ccc;
    font-family:Arial, Helvetica, sans-serif;
    margin-bottom:30px;
}

.gallery{
    display:grid;
    gap:15px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    border:2px solid #222;
    transition:.3s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.03);
    border-color:#c40000;
}

/* CONTACT */

.contact-section{
    text-align:center;
    padding:80px 20px;
    background:#111;
}

.contact-section p{
    font-family:Arial, Helvetica, sans-serif;
    color:#ccc;
    margin-bottom:10px;
}

.city{
    color:white !important;
    font-weight:bold;
}

.appointment{
    color:#999 !important;
    margin-top:25px;
}

.contact-grid{
    max-width:900px;
    margin:40px auto;
    display:grid;
    gap:20px;
}

.contact-card{
    background:#1a1a1a;
    padding:30px;
    border-top:3px solid #c40000;
    border-radius:6px;
}

.contact-card h3{
    margin-bottom:10px;
    font-size:1.5rem;
    color:white;
}

.contact-card p{
    color:#999;
    margin-bottom:20px;
}

.contact-card .btn{
    margin:5px;
}

.business-contact{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

/* FOOTER */

footer{
    text-align:center;
    padding:25px;
    color:#666;
    background:#000;
}

/* DESKTOP */

@media (min-width:768px){

    nav{
        display:block;
    }

    .hero h1{
        font-size:4rem;
    }

    .location{
        font-size:1.6rem;
    }

    .tagline{
        font-size:1.1rem;
    }

    .about-gallery{
        grid-template-columns:repeat(3,1fr);
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery{
        grid-template-columns:repeat(4,1fr);
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }
}