/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-menu a.active-page {
    color: #005A9C;
    font-weight: 600;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: 1px solid white;
}

.dropdown-content a {
    color: #374151;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    border-radius: 0;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: #dc2626;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.register-btn {
    background: #005A9C !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.nav-register-btn {
    background: #ffffff !important;
    color: #005A9C !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 90, 156, 0.3);
    border: 2px solid #005A9C;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
}

/* Venue Section */
.venue {
    padding: 80px 0;
    margin-top: 70px;
}

.venue h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.venue-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.address {
    font-size: 1.1rem;
    color: #005A9C;
    margin-bottom: 1rem;
    font-weight: 500;
}

.map-link {
    display: inline-block;
    background: #005A9C;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.venue-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.venue-info p {
    color: #666;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.venue-info a {
    color: #005A9C;
    text-decoration: none;
    font-weight: 600;
}

/* Hotel Information Styling */
.hotel-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.hotel-info h5 {
    font-size: 1.3rem;
    color: #005A9C;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.hotel-address {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hotel-contact {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.hotel-contact strong {
    color: #333;
    font-weight: 600;
}

.hotel-contact a {
    color: #005A9C;
    text-decoration: none;
}

/* Venue Locations Styling */
.venue-locations {
    margin: 1.5rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.location-item h4 {
    font-size: 1.2rem;
    color: #005A9C;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.location-address {
    font-size: 1.1rem;
    color: #005A9C;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
    display: block;
}

.venue-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid #f39c12;
}

.venue-disclaimer p {
    color: #856404;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.venue-disclaimer strong {
    color: #856404;
    font-weight: 600;
}

/* Parking Table Styling */
.parking-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.parking-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.parking-table th {
    background: #005A9C;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.parking-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    line-height: 1.5;
}

.parking-table tr:last-child td {
    border-bottom: none;
}

.parking-table tr:nth-child(even) {
    background: #f8f9fa;
}


.parking-table a {
    color: #005A9C;
    text-decoration: none;
    font-weight: 500;
}

/* Parking Disclaimer */
.parking-disclaimer {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.parking-disclaimer strong {
    font-weight: 600;
    color: #555;
}

.map-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #005A9C;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Footer Accessibility Notice */
.footer-notice {
    background: #0b0b0b;
    border-top: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;
    padding: 1rem 0;
    margin: 0 0 1rem 0;
}

.footer-notice p {
    margin: 0;
    color: #e5e7eb;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .venue h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-locations {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .location-item {
        min-width: auto;
        text-align: center;
    }

    .location-address {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .parking-table {
        font-size: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .parking-table table {
        min-width: 100%;
        display: block;
        overflow-x: auto;
    }
    
    .parking-table thead,
    .parking-table tbody,
    .parking-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    .parking-table th,
    .parking-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .venue h2 {
        font-size: 1.8rem;
    }

    .venue-content {
        gap: 2rem;
    }
    
    .parking-table {
        margin: 1rem -15px;
        padding: 0 15px;
    }
    
    .parking-table table {
        font-size: 0.7rem;
    }
    
    .parking-table th,
    .parking-table td {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .parking-table th {
        font-size: 0.65rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: auto;
}

/* Hotel Booking Styles */
.hotels-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.hotel-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-info:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #005A9C;
}

.hotel-info h5 {
    color: #005A9C;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hotel-address {
    color: #666;
    font-weight: 600;
    margin-bottom: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hotel-contact {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hotel-contact strong {
    color: #333;
}

.hotel-booking {
    text-align: center;
    margin-top: auto;
    padding-top: 1.5rem;
}

.booking-btn {
    background: #005A9C;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 90, 156, 0.3);
}

.booking-btn:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 156, 0.4);
    color: white !important;
}

.booking-btn:visited {
    color: white !important;
}

.booking-btn:active {
    color: white !important;
}

/* Hotel Booking Responsive */
@media (max-width: 768px) {
    .hotels-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .hotel-info {
        padding: 1.5rem;
        text-align: center;
    }

    .hotel-info h5 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hotel-address {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hotel-contact {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .booking-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }

    .venue-map {
        margin-top: 2rem;
    }

    .map-placeholder iframe {
        height: 250px;
    }
}


