@font-face {
    font-family: 'BeltBlastFont';
    src: url('/assets/fonts/HAMMRF.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

div#bg {
    position: fixed;
    width: 100vw;
        height: 100vh;
    top: 0;
    left: 0;
    z-index: -100;
}

body {
    font-family: "BeltBlastFont", 'Arial', sans-serif;
    font-size: 16px;
    background-color: #1e1e1e;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
}

h1, h2, h3 {
    color: #FF2B2B;
}

a {
    /* color: #FFFF30; */
    color: #e0e0e0;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

ul li {
    list-style: none; /* Remove default bullets */
    padding: 5px 0 5px 30px; /* Add padding for bullet and text spacing */
    position: relative; /* For absolute positioning of the pseudo-element */
}

ul li::before {
    content: ""; /* Required for the pseudo-element to show */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    width: 12px; /* Size of bullet */
    height: 12px;
    background-color: #FF2B2B; /* Red color matching your headers */
    border-radius: 50%; /* Make it circular */
    margin-right: 10px;
}


.button {
    background-color: #FFFF30;
    color: #FF2B2B;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #e6b800;
}

.container {
    padding: 20px;
}

/* Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col {
    flex: 1 0 0%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.col-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
.col-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
.col-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 768px) {
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
}

/* For larger screens, you may want to set a maximum width */
@media (min-width: 1200px) {
    .banner {
        max-width: 1100px; /* Or whatever maximum width you prefer */
    }
}

/* For mobile devices, ensure the banner fits well */
@media (max-width: 768px) {
    .banner {
        width: 100%;
    }
}
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.photo-gallery a {
    display: block;
}
.gallery-thumb {
    width: 300px;
    height: 170px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.2s;
}
.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
