body {
    background-color: #ff4040; /* Dark orange background */
    font-family: Afacad; /*Arial, sans-serif*/
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

@font-face {
  font-family: Afacad;
  src: url("/data/afacad.ttf");
}

.hd-container{
    display: flex;
    align-items: center;
    background-color: white;
    color:black;
    width: 100%;
    vertical-align: middle;
    flex-wrap: wrap;
    gap: 10px;
}

.container{
    margin-bottom: 20px;
}

.icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.siteicon{
    height: 80px;
    margin: 10px;
    flex-shrink: 0;
}

.sitetitle{
    font-weight: bold;
    color: black;
    font-size: 100px;
    margin: 0;
    white-space: nowrap;
}

.title-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.titlelink{
    color: black;
    font-weight: bold;
    font-size: 30px;
    text-decoration: none;
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
}

/* Mobile devices (up to 480px) */
@media (max-width: 480px) {
    .siteicon{
        height: 40px;
        margin: 8px;
    }
    
    .sitetitle{
        font-size: 32px;
    }
    
    .titlelink{
        font-size: 14px;
        margin-right: 5px;
    }
}

/* Tablets (481px to 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .siteicon{
        height: 55px;
        margin: 8px;
    }
    
    .sitetitle{
        font-size: 55px;
    }
    
    .titlelink{
        font-size: 20px;
        margin-right: 8px;
    }
}

/* Small desktops (769px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .siteicon{
        height: 70px;
        margin: 10px;
    }
    
    .sitetitle{
        font-size: 70px;
    }
    
    .titlelink{
        font-size: 24px;
    }
}

.slideimage{
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(50%);
}

.slidecontainer {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 300px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.superh1{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.centerphoto{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    outline: white solid 10px;
}

.slide.active {
    opacity: 1;
}

.slideoverlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    color: white;
}

.slideheader {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.slidedescription {
    margin: 10px 0 0 0;
    font-size: 16px;
}

.imageslideshow {
    position: relative;
}

.slidelink {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 5;
    cursor: pointer;
}

.slidelink.active {
    display: block;
}

.slidebutton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    z-index: 10;
}

.slidebutton:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slidebutton.prev {
    left: 10px;
}

.slidebutton.next {
    right: 10px;
}

.slidedots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.sponsordivider {
    width: 100%;
    height: 8px;
    background-color: white;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: white;
}

.sponsorsection {
    width: 100%;
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

.sponsorheader {
    color: black;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.sponsorcarousel {
    width: 100%;
    overflow: hidden;
    background-color: white;
}

.sponsorimages {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    padding: 0 30px;
}

.sponsorimg {
    height: 100px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--scroll-distance) * -1));
    }
}

.whitelink{
    color: white;
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: #3f1616;
    color: white;
    padding: 40px 0;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
}

.footer-left p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-left a {
    color: #ff4040;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-left a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #ff4040;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #ff4040;
}

.social-icon:hover {
    background-color: transparent;
    transform: scale(1.1);
}