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

body {
    background: #0b0b0b;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: black;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #e11d2e;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .9)), url("/imgs/background-photo.jpg");
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.hero p {
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    background: #e11d2e;
    padding: 14px 28px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

section {
    padding: 80px 8%;
}

.section-title {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
}

.about {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.about img {
    width: 400px;
    border-radius: 10px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service {
    background: #111;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.service h3 {
    margin-bottom: 10px;
    color: #e11d2e;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial {
    background: #111;
    padding: 25px;
    border-radius: 8px;
}

.instagram {
    text-align: center;
}

.contact {
    text-align: center;
}

.contact p {
    margin: 8px 0;
    color: #ccc;
}

footer {
    background: black;
    text-align: center;
    padding: 30px;
    color: #777;
    margin-top: 60px;
}