body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* HEADER */
header {
    background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?blur=40") 
    center/cover no-repeat;
    color: #fff;
    padding-bottom: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    text-align: center;
    margin-top: 100px;
}

.hero h1 {
    font-size: 48px;
}

.btn-primary {
    background: #ff8c42;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section.light {
    background: #f8f8f8;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card img {
    width: 100%;
    border-radius: 8px;
}

.service-card h3 {
    margin-top: 15px;
}

/* ABOUT */
.about {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about img {
    width: 50%;
    border-radius: 8px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
}

/* CONTACT */
.contact-info p {
    font-size: 18px;
    margin: 8px 0;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
}
