body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #fff;
}

#sparks, #bursts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 1;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff0066;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-outline {
    border: 2px solid #ff0066;
    padding: 10px 20px;
    color: #ff0066;
    text-decoration: none;
    border-radius: 5px;
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.intro, .cta-section, .content, .services, .contact-form {
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background: #111;
    padding: 20px;
    border-radius: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
    color: #fff;
}

footer {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}
