body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: radial-gradient(circle, #2f2f2f, #121212);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.header {
    display: flex;
    flex-direction: column;
    padding: 2px;
}

a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
}

header {
    display: flex;
    gap: 3em;
    padding: 10px 20px;
    justify-content: space-between;
}

.logo {
    width: 210px;
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    margin: 2px, 0, 0, 0;
    padding: 0;
}

.nav-links a:hover {
    color: #f4b400;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.disclaimer {
    background: #222;
    border-left: 5px solid #f4b400;
    padding: 20px;
    margin: 40px auto;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.disclaimer h2 {
    color: #f4b400;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

.telegram {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #0088cc;
    color: #fff;
    font-family: poppins, sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.telegram:hover {
    background: #009fe3;
    transform: scale(1.05);
}

.facebook {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #1877f2;
    color: #fff;
    font-family: poppins, sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.facebook:hover {
    background: #145dbf;
    transform: scale(1.05);
}

.butbuttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}

h3 {
    color: #f4b400;
    margin: 30px;
    text-align: center;
}

h1 {
    font-family: 'Cinzel', 'Times New Roman', Times, serif;
    text-align: center;
    margin: 30px;
}





.slider {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  background: #3b3b3b; /* grey background */
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 500%;
  height: 100%;
  transition: 1s;
}

.slide {
  width: 20%;
  display: flex;
  justify-content: space-between;
}

.slide img {
  width: 49%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Hide radio buttons */
input[type="radio"] {
  display: none;
}

/* Manual navigation buttons (the dots) */
.navigation-manual {
  position: absolute;
  width: 100%;
  bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.manual-btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.manual-btn:hover {
  background: #fff;
}

/* Slide movement logic */
#img1:checked ~ .first { margin-left: 0; }
#img2:checked ~ .first { margin-left: -20%; }
#img3:checked ~ .first { margin-left: -40%; }
#img4:checked ~ .first { margin-left: -60%; }










section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
}

.month, .actor {
    max-width: 550px;
}

#container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.actor {
    font-size: 40px;
    font-family: 'Times New Roman', Times, serif;
}

.month h2 {
    color: #f4b400;
}

.details {
    color: #f4b400;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    text-align: center;
}

.diver {
    text-align: center;
    margin: 30px;
    max-width: 900px;
}

.adventure {
    font-size: 40px;
    font-family: 'Times New Roman', Times, serif;
    color: #f4b400;
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.ticket {
    margin: 30px;
    text-align: center;
}








footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    gap: 50px;
    background: linear-gradient(to top, #2c2b2b 0%, #212020 100%);
    padding: 30px 5px 10px 5px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #f4b400;
}

@media (max-width: 700px) {
    .nav-links{
        display: none;
        flex-direction: column;
        background-color: #444;
        position: absolute;
        top: 60px;
        right: 20px;
        border-radius: 8px;
        padding: 10px;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
}