/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Video background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Content overlay */
.content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
    padding: 20px;
}

/* Header */
header {
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main content */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
}

/* Highlights section */
.highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}

.highlight-box {
    flex: 1;
    min-width: 250px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

/* Location page styles */
.location-info {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.location-info h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-text {
    flex: 3;
    min-width: 300px;
}

.location-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.location-text h4 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.location-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.location-map {
    flex: 2;
    min-width: 250px;
}

.map-image {
    width: 100%;
    border-radius: 5px;
}

.location-map a {
    color: #4CAF50;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    text-align: center;
}

/* FAQ page styles */
.faq {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4CAF50;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .highlights {
        flex-direction: column;
    }
    
    .location-details {
        flex-direction: column;
    }
}
