* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(29, 66, 138) !important;
    color: #003366;
    font-family: sans-serif;
}

.navbar {
    min-height: 90px !important;
    padding: 10px 20px; 
}

.navbar.bg-black {
    background-color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #1a3c6d !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #a3d8f4 !important;
}


.container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    background: #e6f2ff;
    padding: 20px;
    border-radius: 10px;
}
.main-content h3 {
    text-align: center;
    margin: 20px 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.ticket-section h3 {
    text-align: center;
    margin: 20px 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.ticket-option {
    background-color: #e6f7ff;
    border: 2px solid #0077be;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.ticket-option:hover {
    background: #e6f7ff;
}

.ticket-option.selected {
    background: #cceeff;
}

.ticket-title {
    font-weight: bold;
    color: #005a87;
}

.ticket-price {
    font-size: 1.3rem;
    color: #0077be;
    margin: 10px 0;
}

.date-selector {
    margin: 20px 0;
}

.date-selector label {
    display: block;
    margin-bottom: 8px;
}

.date-selector input {
    width: 100%;
    padding: 10px;
    border: 2px solid #0077be;
    border-radius: 5px;
}

.buy-btn {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
}

.buy-btn:hover {
    background: #ff7700;
}

.highlight {
    background: #ffcc00;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}
.exp-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/*modal*/

.ticket-option {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ticket-option:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ticket-option.selected {
    border-color: #007bff;
    background-color: #e7f3ff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.ticket-title {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.ticket-price {
  
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.ticket-desc {
    color: #6c757d;
    font-size: 0.9em;
}