body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #0A0A0A;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(0.4);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-title {
    font-family: 'Orbitron';
    color: #00FF88;
    font-size: 3rem;
    letter-spacing: 4px;
    z-index: 2;
}

.hero-sub {
    z-index: 2;
    opacity: 0.8;
}

/* ---- SECTION ---- */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-family: 'Orbitron';
    color: #00FF88;
    border-bottom: 2px solid #00FF88;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

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

.card {
    background: #1D3328;
    padding: 20px;
    border-left: 4px solid #00FF88;
    border-radius: 4px;
}

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

.photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid #00FF88;
}

/* ---- CONTACT ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    background: #111;
    border: 1px solid #00FF88;
    padding: 12px;
    color: #FFF;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    background: #00FF88;
    color: #000;
    border: 0;
    padding: 12px;
    cursor: pointer;
    font-family: 'Orbitron';
}

/* ---- FOOTER ---- */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid #00FF88;
}
