body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #32b8ed;
    background: linear-gradient(180deg,rgba(50, 184, 237, 1) 0%, rgba(78, 212, 134, 1) 50%, rgba(255, 236, 64, 1) 100%);
}

html {
    max-width: 100%;
}

header {
    background: #3ff5fb;
    background: radial-gradient(circle,rgba(63, 245, 251, 1) 0%, rgba(252, 70, 173, 1) 100%);
    height: 100px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header h1 {
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.body-discount {
    background: rgb(231, 231, 231);
}
.main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.carousel {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    max-width: 800px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    width: 60px;
    height: 60px;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.5s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.indicator.active {
    background: white;
}

.main-info {
    display: flex;
    flex-direction: column;
    width: 80%;
    padding: 50px;
    gap: 10px;

}

.main-info h1 {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
    color: white;
    text-align: center;
}

.main-info p {
    color:#0488bd;
    font-size: 20px;
    text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.589);
    margin: 0;
}

.main-info h2 {
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.main-info-highlights {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.main-info-highlights-el {
    margin-left: 40px;
    display: flex;
    gap: 5px;
    align-items: center;
}


.main-info-highlights-span {
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

footer {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: #fb3f3f;
    background: radial-gradient(circle,rgba(251, 63, 63, 1) 0%, rgba(252, 70, 243, 1) 100%);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.link {
    text-decoration: none;
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
    transition: font-size 0.5s ease;
}

.link:hover {
    font-size: 20px;
}

.active { 
    font-size: 22px;
}

footer p {
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.main-2 {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    padding: 50px;
    gap: 20px;
}

.main-2 h1 {
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
    color: white;
}

.main-2 p {
    color:#353535;
    font-size: 20px;
    margin: 0;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-container p {
    margin-left: 20px;
}

.numbers {
    font-weight: 600;
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.main-2 h2 {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
    color: white;
}

.dotted-text {
    position: relative;
}

.dotted-text::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.dotted-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    gap: 10px;
}

.career {
    width: 80%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.career-h2 {
    color:#32b8ed !important;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.288) !important;
}

.career-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-text-container p {
    margin-left: 20px;
}

.career-numbers {
    font-weight: 600;
    color: #32b8ed; 
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.13)
}

.career-dotted-text {
    position: relative;
}

.career-dotted-text::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #32b8ed; 
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.616);
}

.application-form-title {
    color: #32b8ed !important; 
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.288) !important;
}

.application-form {
    max-width: 800px;
    background-color: white;
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    color: #32b8ed; 
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.616);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.required:after {
    content: " *";
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    min-height: 120px;
    resize: none;
}

.file-input {
    padding: 10px 0;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.note {
    font-size: 12px !important;
    color: #7f8c8d;
    margin-top: 5px;
}

.required-note {
    text-align: right;
    font-size: 14px;
    color: #e74c3c;
    margin-top: 20px;
}

.main-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.main-menu h1{
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.main-menu h2{
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.menu {
    width: 80%;
    background-color: #0488bd;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
    padding: 50px 0px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.menu-h2 {
    justify-content: start;
    font-size: 50px;
    
}

.menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.menu-container-item {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.menu-container-item img {
    width: 300px;
    background-color: white;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
}

.menu-title {
    max-width: 300px;
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
    font-size: 30px;
    font-weight: 600;
}

.menu-container-item-text {
    color: #ffffff; 
    font-size: 20px;
    max-width: 300px;
}

.mark {
    color: #ffffff; 
    font-weight: 600;
    font-size: 20px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.616);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
}

.opening-hours {
    margin-top: 30px;
}

.opening-hours table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours tr:nth-child(even) {
    background-color: #f8f9fa;
}

.opening-hours td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.opening-hours td:last-child {
    text-align: right;
}

.feedback-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feedback-form h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    background-color: #353535;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.required:after {
    content: " *";
    color: var(--accent);
}

.map-container {
    margin-top: 30px;
    height: 300px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
  }
  th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    vertical-align: top;
  }
  th {
    background: #e0e7ff;
  }
  .note {
    font-style: italic;
    color: white;
    margin-bottom: 20px;
    font-size: 15px !important;
  }

  .discount-footer {
    position: absolute;
    bottom: 0;
  }

  .body-discount h2 {
    color:#1ea1d4 !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.288) !important;
  }

  .attractions-title {
    color: #ffffff; 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.616);
  }

  @media (max-width: 1200px) {
    .main {
        padding: 25px !important; 
    }

    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-info-highlights {
        width: 100% !important;
    }

    .main-info p {
        font-size: 12px;
    }

    .main-info h2 {
        font-size: 15px;
    }

    footer {
        gap: 10px !important;
    }

    .nav-container {
        gap: 10px !important;
    }

    .link {
        font-size: 10px;
    }

    .link:hover {
        font-size: 12px;
    }

    .active {
        font-size: 14px; 
    }

    .menu-center {
        text-align: center;
    }

    .menu-container-item img {

        width: 150px;
    }

    .menu-container-item {
        width: 90%;
    }

    .menu-h2 {
        text-align: center;
    }

    .menu-title {
        font-size: 15px;
    }

    .menu-container-item-text  {
        font-size: 12px;
    }

    .mark {
        font-size: 12px;
    } 

    .discount-footer {
        position: static;
    }

    .note {
        text-align: center;
    }

    .attractions-title {
        text-align: center;
    }
  }