/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors pulled from the logo */
    --brand-green: #90d43a; 
    --brand-cyan: #2ab5d4;
    --bg-main: #14161a;
    --bg-card: #1f2229;
    --text-main: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth; /* Makes anchor links slide down nicely */
}

.container {
    width: 90%;
    max-width: 1000px; /* Slimmer, more readable width */
    margin: 0 auto;
}

/* --- TYPOGRAPHY COLORS --- */
.text-green { color: var(--brand-green); }
.text-cyan { color: var(--brand-cyan); }

h1, h2, h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--bg-card);
    padding: 1.2rem 0;
    border-bottom: 2px solid #2a2e37;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px; /* You can adjust this number to make the logo bigger or smaller */
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand-green);
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #2a2e37;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- MAIN INFO SECTIONS --- */
.main-content {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Subtle colored left borders for each card to match the aesthetic */
.border-green { border-left: 5px solid var(--brand-green); }
.border-cyan { border-left: 5px solid var(--brand-cyan); }

.info-section h2 {
    font-size: 2rem;
    border-bottom: 1px solid #2a2e37;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.item-list {
    margin: 20px 0 20px 30px;
    color: #cbd5e1;
}

.item-list li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.buy-notice {
    margin-top: 30px;
    background-color: rgba(42, 181, 212, 0.1);
    padding: 20px;
    border-radius: 6px;
}

.buy-notice h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* --- EVENTS CALENDAR --- */
.events-section {
    background-color: var(--bg-card);
    padding: 60px 0;
    border-top: 1px solid #2a2e37;
    border-bottom: 1px solid #2a2e37;
}

.calendar-placeholder {
    width: 100%;
    height: 400px;
    background-color: #0f1115;
    border: 2px dashed #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    background-color: var(--bg-main);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3, .footer-hours h4 { 
    margin-bottom: 15px; 
}

.footer-info p, .footer-hours p { 
    color: #94a3b8; 
    margin-bottom: 8px; 
}

/* --- HOMEPAGE SPECIFICS --- */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.explore-card {
    background-color: var(--bg-card);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #2a2e37;
}

/* Hover effect makes the card float up */
.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    background-color: #242830;
}

.explore-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.explore-card p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Highlights Section */
.highlights-section {
    background-color: var(--bg-card);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #2a2e37;
    border-bottom: 1px solid #2a2e37;
}

.highlight-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.highlight-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: var(--bg-main);
    border-radius: 8px;
}

/* --- IMAGE CAROUSEL STYLES --- */
.carousel-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #2a2e37;
    transition: opacity 0.5s ease-in-out; /* Creates the smooth fade */
}

/* Make linked highlight items look clickable */
a.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    background-color: #242830;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Stack the logo on top of the links */
    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Allow the links to wrap to a second line instead of running off screen */
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }
}