* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --neon-green: #b7ff00;
    --gator-green: #4c8f00;
    --dark-bg: #050505;
    --panel: rgba(0, 0, 0, 0.72);
    --panel-soft: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --muted: #c8c8c8;
    --border: rgba(183, 255, 0, 0.28);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

body {
     font-family: "Trebuchet MS", sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
        url('djg8rlogo.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Optional if your background image is not logo.png
body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
        url('your-background.jpg') no-repeat center center fixed;
    background-size: cover;
}
*/

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 14px rgba(183, 255, 0, 0.3));
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-text h1,
.site-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--neon-green);
    text-transform: uppercase;
    line-height: 1;
}


.brand-text p,
.site-tagline {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text);
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.03);
}

.menu-toggle {
    display: none;
    background: rgba(183, 255, 0, 0.12);
    color: #b7ff00;
    border: 1px solid rgba(183, 255, 0, 0.35);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
}

.menu-toggle:hover {
    background: #b7ff00;
    color: #000;
}

nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

nav a:hover,
nav a.active {
    color: #000;
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 18px rgba(183, 255, 0, 0.35);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 70px;
}

.hero {
    background: linear-gradient(135deg, rgba(183, 255, 0, 0.14), rgba(0, 0, 0, 0.68));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text);
}

.hero h1 span {
    color: var(--neon-green);
}

.hero p {
    max-width: 760px;
    font-size: 3rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.button,
button,
input[type="submit"] {
    font-family: "Trebuchet MS", sans-serif;
    display: inline-block;
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(183, 255, 0, 0.3);
}

.section,
.card,
.panel {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

h1, h2, h3, h4 {
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    ;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

h5 {
    font-family: "Comic Sans MS", serif;
    font-size: 1.25rem;
    margin-bottom: 1px;
    color: var(--neon-green);
}

p {
    color: var(--muted);
    margin-bottom: 14px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(183, 255, 0, 0.15);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 6px;
}

form {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
}

form h2 {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(183, 255, 0, 0.14);
    background: rgba(255,255,255,0.08);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gallery-item {
    background: var(--panel);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 16px;
    color: var(--muted);
    font-size: 0.95rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--panel);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
    background: rgba(183, 255, 0, 0.14);
    color: var(--neon-green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

tr:hover td {
    background: rgba(255,255,255,0.03);
}

footer {
    margin-top: 40px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.72);
    border-top: 1px solid rgba(183, 255, 0, 0.15);
}

/* Utility classes */
.text-green {
    color: var(--neon-green);
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 900px) {
    .grid-2,
    .grid-3,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 36px 24px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .logo {
        height: 72px;
    }
}

/* GALLERY PAGE */
.gallery-section {
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    margin-bottom: 30px;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b7ff00;
    margin-bottom: 10px;
}

.gallery-subtext {
    color: #d0d0d0;
    margin-bottom: 25px;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #111;
}

.gallery-caption {
    padding: 14px 16px;
    color: #e5e5e5;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Optional video styling */
.gallery-item video {
    controls: true;
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
/* all your normal styles above */


/* MOBILE FIXES */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 15px;
    }

    .logo {
        height: 55px;
        width: auto;
    }

    .brand-text h1,
    .site-title {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 4px;
    }

    .brand-text p,
    .site-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    nav {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 18px;
        margin-bottom: 5px;
    }

    .hero {
        padding: 25px 18px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    main {
        padding: 20px 15px 40px;
    }
}

select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(183,255,0,0.35);
    background: rgba(0,0,0,0.75);
    color: #b7ff00;
    font-size: 1rem;
    outline: none;
}

select option {
    background: black;
    color: #b7ff00;
}
