@font-face {
  font-family: hangover-font;
  src: url(Hangoverbrush-6YYyD.ttf);
  font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: black;
    color: #333;
    padding: 20px;
}
.site-header {
    background-image: url('OzAlot Logo.png');
    background-size: 750px;
    background-repeat: no-repeat;
    height: 900px;
    background-position: center 120px;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
}

nav {
    width: 100%;
    margin-top: -20px;
}

nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

nav ul li {
    background: linear-gradient(to bottom, #000000, #4f4f4f);
    border: 2px solid #fd0000;
    border-radius: 100px;
    padding: 20px 10px;
    box-shadow:
        0 8px 16px rgba(253, 0, 0, 0.6),
        0 4px 8px rgba(253, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.nav {
    display: block;
    color: white;
    font-family: hangover-font;
    font-size: 42px;
    text-decoration: none;
    animation: colorChange 2s infinite;
    will-change: transform, color;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes colorChange {
    0%, 33% {color: red; }
    33%, 66% {color: goldenrod}
    66%, 100% {color: white; }
}

hr {
    border: none;
    border-top: 3px solid #fd0000;
    margin: 30px 0;
    box-shadow: 0 0 10px rgba(253, 0, 0, 0.9);
    animation: disperse 4s infinite;
    will-change: opacity;
}

@keyframes disperse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.nav:hover {
    animation-play-state: paused;
    color: red !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -275px;
    animation: firePulse 1s ease-in-out infinite;
    will-change: text-shadow;
}

@keyframes firePulse {
    0%, 100% {
        text-shadow: 0 0 20px #ff2600, 0 0 40px #af1717, 0 0 60px #920404;
    }
    50% {
        text-shadow: 0 0 30px #ff2600, 0 0 40px #af1717, 0 0 60px #920404;
    }
}

.social-icons a {
    color: white;
    font-size: 40px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fd0000;
}

#bio-information {
    font-size: 20px;
    color: white;
}

#bio-information h2 {
    font-family: hangover-font;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
    animation: colorChange 2s infinite, bounce 1s ease-in-out 5;
}

#photo-gallery h2 {
    color: white;
    text-align: center;
    font-family: hangover-font;
    font-size: 50px;
    margin-bottom: 20px;
    animation: colorChange 2s infinite;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 10px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgb(89, 88, 86);
    border-radius: 10px;
}

.photos {
    min-width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #000000;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(253, 0, 0, 0.5);
    will-change: transform;
}

.photos:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(253, 0, 0, 0.8);
}

#video-gallery h2 {
    color: white;
    text-align: center;
    font-family: hangover-font;
    font-size: 50px;
    margin-bottom: 20px;
    animation: colorChange 2s infinite, bounce 1s ease-in-out 5;
}

.videos {
    min-width: 300px;
    height: 200px;
    border: 3px solid #000000;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(253, 0, 0, 0.5);
    transition: transform 0.3s;
    will-change: transform;
}

.videos:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(253, 0, 0, 0.8);
}

#contact-information {
    margin-top: 20px;
    color: gray;
}

#contact-information strong {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    font-size: 18px;
}

#contact-information a {
    color: #ffffff;
}

#contact-information p {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 10px;
    font-size: 18px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    border: 3px solid #fd0000;
    border-radius: 25px;
    box-shadow:
        0 8px 16px rgba(253, 0, 0, 0.6),
        0 4px 8px rgba(253, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #333333, #1a1a1a);
    border: 2px solid #fd0000;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(253, 0, 0, 0.3);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: goldenrod;
    box-shadow: 0 4px 15px rgba(253, 0, 0, 0.7);
    transform: scale(1.02);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #fd0000, #920404);
    border: 2px solid #fd0000;
    border-radius: 15px;
    color: white;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow:
        0 5px 15px rgba(253, 0, 0, 0.6),
        0 2px 8px rgba(253, 0, 0, 0.4);
}

.contact-form button:hover {
    background: linear-gradient(to bottom, #ff3300, #fd0000);
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(253, 0, 0, 0.9),
        0 5px 15px rgba(253, 0, 0, 0.7);
}

.footer {
    padding: 20px;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    margin-top: 40px;
}


/* --------------------------- */
/* MOBILE RESPONSIVE SECTION  */
/* --------------------------- */

@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    .site-header {
        height: 350px;
        background-position: center 80px;
        padding-top: 10px;
    }

    nav {
        margin-top: 15px;
    }

    nav ul {
        gap: 8px;
        padding: 0 5px;
    }

    nav ul li {
        padding: 10px 5px;
        border: 1.5px solid #fd0000;
    }

    .nav {
        font-size: 20px;
    }

    .social-icons a {
        font-size: 32px;
    }

    #bio-information {
        font-size: 16px;
    }

    #bio-information h2,
    #photo-gallery h2,
    #video-gallery h2 {
        font-size: 35px;
    }

    .horizontal-scroll {
        padding: 10px;
        gap: 15px;
    }

    .photos {
        min-width: 250px;
        height: 250px;
    }

    .videos {
        min-width: 280px;
        height: 180px;
    }

    .contact-form {
        padding: 20px;
        margin: 20px auto;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 5px;
    }

    .site-header {
        height: 300px;
        background-position: center 60px;
        padding-top: 8px;
    }

    nav {
        margin-top: 10px;
    }

    nav ul {
        gap: 5px;
        padding: 0 3px;
    }

    nav ul li {
        padding: 8px 3px;
        border: 1px solid #fd0000;
    }

    .nav {
        font-size: 16px;
    }

    .social-icons a {
        font-size: 28px;
    }

    #bio-information h2,
    #photo-gallery h2,
    #video-gallery h2 {
        font-size: 28px;
    }

    .photos {
        min-width: 140px;
        height: 140px;
    }

    .videos {
        min-width: 260px;
        height: 160px;
    }

    .contact-form {
        padding: 15px;
    }
}


/* --------------------------------------- */
/* ❤️ NEW FIX FOR MOBILE NAVIGATION ❤️ */
/* --------------------------------------- */

@media screen and (max-width: 768px) {
    nav ul {
        grid-template-columns: repeat(2, 1fr); /* 2 buttons per row */
    }
}

@media screen and (max-width: 480px) {
    nav ul {
        grid-template-columns: 1fr; /* Stack vertically */
    }
}