body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    background: black;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #222;
    z-index: 1000;
}

nav a {
    color: #d4af37;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero img {
    max-width: 220px;
}

.hero h1 {
    font-size: 2.8em;
    margin: 20px 0;
}

.hero p {
    color: #ccc;
}

/* BUTTONS */
.button {
    background: #d4af37;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
}

.button:hover {
    opacity: 0.85;
}

/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #111;
    padding: 25px;
    border: 1px solid #222;
    border-radius: 8px;
}

/* FORM */
form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #111;
    border: 1px solid #333;
    color: white;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    border-top: 1px solid #222;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    .gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
}

.lightbox.active {
    display: flex;
}