* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background: url('../images/fade.png') center;
    background-size: cover;
    background-attachment: fixed;
}

.login, .reg{
    background: #fff;
}

.ticket-section {
  background: #f5f8ff;
  padding: 40px 20px;

  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #004b87;
}

.ticket-form{
    max-width: 700px;
    width: 100%;
    margin: 0 auto 20px auto;
}

.ticket-form .form-group {
  margin-bottom: 20px;
}

.ticket-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.ticket-form input,
.ticket-form select {
  width: 100%;
  padding: 16px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.error{
    position: fixed;
    left: 0;
    display: none;
    top: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

.error p{
    margin: 10px 0 20px 0;
}

.error-modal{
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    max-width: 300px;
    width: 100%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

#total-price {
  font-size: 20px;
  font-weight: bold;
  color: #007b3a;
}

.buy-button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.buy-button:hover {
  background-color: #005bb5;
}


.wrap{
    max-width: 1300px;
    width: 100%;
    margin: 10px auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f1f1;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: color 0.3s;
}

.au_contact{
    padding: 100px 0 60px 0;
}

#contactForm{
    margin-top: 30px;
}

.au_contact textarea{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 140px;
}

#contactSuccessMessage{
    text-align: center;
    margin-top: 50px;
}

.au_form_checkbox_group{
    display: flex;
    align-items: center;
}

.au_form_checkbox_group input{
    margin: 0 10px 0 0;
}

a:hover {
    color: #003d7a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.au_topline {
    background-color: #00246b;
    padding: 12px 0;
    z-index: 1000;
}

.au_topline_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.au_logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 0;
    text-decoration: none;
}

.au_logo span {
    color: #ffcc00;
}

.au_account_buttons {
    display: flex;
    gap: 15px;
}

.au_button {
    padding: 8px 16px 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.au_button_primary {
    background-color: #ffcc00;
    color: #00246b;
    border: none;
}

.au_button_primary:hover {
    background-color: #e6b800;
}

.au_button_secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.au_button_secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.au_hero {
    background: linear-gradient(rgba(0, 36, 107, 0.8), rgba(0, 36, 107, 0.9)), url('../images/main.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0 100px;
    text-align: center;
    color: #fff;
}

.au_hero_content {
    max-width: 800px;
    margin: 0 auto;
}

.au_hero_subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.au_hero_title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.au_hero_text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}


.au_features {
    padding: 80px 0;
    background-color: #fff;
}

.au_section_title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #00246b;
}

.au_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.au_feature_box {
    padding: 30px;
    background-color: #f5f8ff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.au_feature_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.au_feature_icon {
    font-size: 48px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.au_feature_title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00246b;
}

.au_feature_text {
    font-size: 16px;
    color: #555;
}


.au_about {
    padding: 80px 0;
 
}

.au_about_content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.au_about_image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}


button.mfp-close{
    color: #111;
}

.au_about_image img {
    width: 100%;
    height: auto;
    display: block;
}

.au_about_text {
    flex: 2;
}

.au_about_title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00246b;
}

.au_about_paragraph {
    margin-bottom: 20px;
    line-height: 1.8;
}


.au_responsible {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.au_responsible_title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00246b;
}

.au_responsible_text {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.au_services_grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.au_service_link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: #f5f8ff;
    border-radius: 8px;
    color: #00246b;
    font-weight: 600;
    transition: all 0.3s;
}

.au_service_link:hover {
    background-color: #e6f0ff;
}

.au_service_icon {
    font-size: 24px;
}

.au_age_restriction {
    display: inline-block;

    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    height: 55px;
    width: 55px;
    line-height: 55px;
    margin-top: 20px;
}


.au_footer {
    background-color: #00246b;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.au_footer_logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.au_footer_logo span {
    color: #ffcc00;
}

.au_footer_description {
    max-width: 600px;
    margin: 0 auto 30px;
}

.au_footer_services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.au_footer_service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.au_footer_service_icon {
    font-size: 32px;
}

.au_footer_service_icon img{
    max-width: 200px;
    width: auto;
    max-height: 45px;
    height: auto;
    filter: brightness(0) invert(1);
}

.au_footer_links {
    margin: 30px 0;
}

.au_footer_links a {
    color: #fff;
    margin: 0 15px;
}

.au_disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}


.au_modal {
    position: relative;
    background: #fff;
    padding: 30px;
    width: auto;
    max-width: 620px;
    margin: 20px auto;
    border-radius: 8px;
}

.au_modal_title {
    color: #00246b;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.au_form_group {
    margin-bottom: 20px;
}

.au_form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.au_form_input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.au_privacy {
    padding: 120px 0 60px;
}

.au_privacy_title {
    color: #00246b;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.au_privacy_updated {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.au_privacy_section {
    margin-bottom: 40px;
}

.au_privacy_section_title {
    color: #00246b;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.au_privacy_text {
    margin-bottom: 15px;
}

.au_privacy_list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.au_privacy_list li {
    margin-bottom: 8px;
}

.au_privacy_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.au_privacy_table th, .au_privacy_table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.au_privacy_table th {
    background-color: #f5f8ff;
}

.au_form_checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.au_form_checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.au_form_submit {
    width: 100%;
    padding: 12px;
    background-color: #ffcc00;
    color: #00246b;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.au_form_submit:hover {
    background-color: #e6b800;
}

.au_success_message {
    display: none;
    padding: 20px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
}


@media (max-width: 992px) {
    .au_features_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .au_about_content {
        flex-direction: column;
    }
    
    .au_hero_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .au_features_grid {
        grid-template-columns: 1fr;
    }
    
    .au_footer_services {
        flex-wrap: wrap;
    }
}