* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar */
nav {
    background: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}
nav h1 {
    font-size: 1.5rem;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
nav ul li a:hover {
    color: #ff9900;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
}

/* About */
#about {
    padding: 40px;
    background: #f4f4f4;
}
.about-container {
    display: flex;
    gap: 20px;
    align-items: center;
}
.about-container img {
    width: 50%;
    border-radius: 8px;
}

/* Services */
#services {
    padding: 40px;
    text-align: center;
}
.service-boxes {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.service {
    background: #ff9900;
    color: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
}

/* Gallery */
#gallery {
    padding: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 80%;
    max-height: 80%;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Contact */
#contact {
    padding: 40px;
    background: #222;
    color: white;
    text-align: center;
}
