@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100%;
    background: #000;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    background-color: #000000;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo img {
    height: 10px;
    width: auto;
}

.left-logo img {
    height: 60px;
    /* Custom size for left logo */
    width: auto;
}

.right-logo img {
    height: 90px;
    /* Custom size for right logo */
    width: auto;
    margin-right: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;


}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: bold;
}

.nav-links a:hover {
    color: rgba(212, 175, 55, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    height: 100vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at bottom center, rgba(212, 175, 55, 0.6), rgba(0, 0, 0, 0.9) 60%);
}


.container p {
    max-width: 500px;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.6rem;
    font-family: 'Fjalla One', sans-serif;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    color: white;
    margin: 100px;
    margin-top: 260px;
    margin-left: 200px;
}

h1 {
    font-size: 7rem;
    margin-bottom: 20px;
    font-family: 'Fjalla One', sans-serif;
}

p {
    max-width: 500px;
    opacity: 0.8;
    line-height: 1.6;
}

button {
    margin-top: 25px;
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    background: gold;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 20px;
}

button:hover {
    background: #ffd700;
    transform: scale(1.05);
}


.main {
    display: flex;
    padding: 50px 6%;
    gap: 30px;
    background-color: #000000;
}

.column {
    flex: 2;
}


.events {
    background-color: #000000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.H {
    color: #ffd700;
    text-align: center;
    font-family: 'Fjalla One', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.event-list ol {
    padding: 15px;
    margin: 10px 0;
    background-color: #000000;
    border-radius: 10px;
    overflow-y: auto;
}

.event-list ol li {
    margin-bottom: 10px;
    cursor: default;
    margin-left: 20px;
    color: white;
}


.rules-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffd700;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.rules-button:hover {
    background-color: #b69f08;
}

.material-symbols-outlined {
    font-size: 20px;
    color: white;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    /* optional spacing */
}

/* About Section Styles */
.about {
    padding: 80px 5%;
    background-color: #000000;
    color: rgb(255, 255, 255);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}




.wrapper {
    width: 1000px;
    display: flex;
    justify-content: center;
}

.carousel {
    position: relative;
    width: 400px;
    height: 420px;
    display: flex;
    justify-content: right;
    perspective: 1500px;
}

.card {
    position: absolute;
    width: 300px;
    height: 380px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.6s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Center */
.card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
}

/* Left */
.card.left {
    transform: translateX(-300px) scale(0.8);
    opacity: 0.7;
    z-index: 3;
}

/* Right */
.card.right {
    transform: translateX(300px) scale(0.8);
    opacity: 0.7;
    z-index: 3;
}

/* Hidden */
.card.hidden {
    transform: scale(0);
    opacity: 0;
}

/* Footer Styles */
.footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: center;
}

.footer-content {
    max-width: 500px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
}

.footer p {
    margin: 6px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.footer a {
    position: relative;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Smooth hover underline effect */
.footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #00f5d4;
    transition: 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

.footer a:hover {
    color: #00f5d4;
}





@media (max-width: 1024px) {

    .content {
        margin: 120px 40px;
        margin-top: 200px;
        margin-left: 40px;
    }

    h1 {
        font-size: 4rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .wrapper {
        width: 100%;
    }

    .carousel {
        justify-content: center;
    }

    .main {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }
}


@media (max-width: 768px) {

    /* Navbar */
.navbar {
        background-color:transparent;
        padding: 15px 5%;
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.5s ease;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        margin-left: 0px;
    }


    .nav-links.active {
        left: 0;
    }

  .menu-toggle {
      display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }

    /* Hero Section */
    .content {
        margin: 120px 20px;
        margin-top: 180px;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .container {
        height: auto;
        padding-bottom: 60px;
    }

    /* Logos */
    .left-logo img {
        height: 40px;
    }

    .right-logo img {
        height: 60px;
        margin-right: 0;
    }

    /* Carousel */
    .carousel {
        width: 100%;
        height: 380px;
    }

    .card {
        width: 250px;
        height: 320px;
    }

    .card.left {
        transform: translateX(-200px) scale(0.8);
    }

    .card.right {
        transform: translateX(200px) scale(0.8);
    }

    /* Buttons */
    button {
        padding: 10px 20px;
        font-size: 14px;
    }
}


@media (max-width: 480px) {

    h1 {
        font-size: 2.2rem;
    }

    .content {
        margin-top: 150px;
    }

    .carousel {
        height: 320px;
    }

    .card {
        width: 220px;
        height: 280px;
    }

    .card.left {
        transform: translateX(-160px) scale(0.75);
    }

    .card.right {
        transform: translateX(160px) scale(0.75);
    }

    .footer p {
        font-size: 12px;
    }
}