/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --primary-yellow: #f4ba33;
    --secondary-red: #d32f2f;
    --text-white: #ffffff;
    --text-black: #000000;
    --bg-dark: #000000;
    --font-main: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--text-white);
    color: var(--text-black);
    line-height: 1.6;
}

/* --- Header & Navigation --- */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    /* Smaller font for top bar info */
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav {
    background-color: var(--primary-yellow);
    padding: 0;
    /* Let container padding/height handle it */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo img {
    height: auto;
    max-height: 125px;
    /* Reduced from 200px to fit better */
    background-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: 50px;
    /* Space from logo */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-red);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* Adjust as needed */
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    /* Ensure text is above the slider */
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-cta {
    background-color: var(--secondary-red);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #b71c1c;
}

/* --- Section Styling --- */
section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 40px;
}

/* --- What to Expect --- */
.what-to-expect {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.what-to-expect .section-title {
    color: var(--text-white);
    border-bottom: 2px solid var(--primary-yellow);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 50px;
    /* Center the underline effectively */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.expect-grid {
    display: grid;
    /* 7 columns as requested, responsive */
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.expect-card {
    background-color: #1a1a1a;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #333;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.expect-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.expect-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    background-color: #333;
}

.expect-title {
    color: var(--secondary-red);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 5px;
    flex-grow: 1;
    /* Pushes button down */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-register {
    background-color: var(--text-white);
    color: var(--text-black);
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background-color: var(--primary-yellow);
}

/* --- Learn More (Video Section) --- */
.learn-more {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /* Adjust height as needed to match screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Prevent interaction with video */
}

.video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
    /* Slight zoom to avoid black bars in some ratios */
}

.learn-more-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* Optional: dark overlay to make text pop */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-learn-more {
    background-color: var(--secondary-red);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-learn-more:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* --- Tour Schedule (restored if needed or just keep generic section) --- */
.tour-schedule-list-section {
    background-color: var(--text-white);
    color: var(--text-black);
}

.schedule-list {
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
}

.schedule-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.schedule-item a {
    color: var(--secondary-red);
    font-weight: 700;
    text-decoration: none;
}

.schedule-item a:hover {
    text-decoration: underline;
}

/* --- Map / Coming Soon Section --- */
.map-section {
    background-color: var(--primary-yellow);
    text-align: center;
    padding: 80px 20px;
}

.map-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- Footer --- */
/* --- Footer --- */
.site-footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.site-footer .btn-footer {
    padding: 15px 30px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    border: none;
    display: inline-block;
    /* Ensure they behave like buttons */
    transition: transform 0.2s, opacity 0.2s;
}

.btn-footer:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-sponsor {
    background-color: #0044cc;
    /* Strong Blue */
}

.btn-tickets {
    background-color: var(--secondary-red);
    /* Red */
}

.btn-vendor {
    background-color: #ff8800;
    /* Orange */
}

.btn-investor {
    background-color: #2bc01b;
    border: 2px solid white;
    /* Visible white border */
}

.site-footer a {
    color: var(--primary-yellow);
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .expect-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Page Styling --- */

.page-banner {
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.about-section {
    padding: 0;
    /* Remove default padding to allow banner to flush */
    background-color: white;
    color: black;
    text-align: left;
}

.about-header {
    background-color: var(--secondary-red);
    padding: 30px 20px;
    text-align: center;
    width: 100%;
}

.about-section .section-title {
    color: white;
    margin-bottom: 0;
}

.about-section .container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.about-sidebar {
    flex: 0 0 300px;
    /* Fixed width for sidebar */
    text-align: center;
}

.about-sidebar img {
    width: 100%;
    max-width: 450px;
    max-height: 450px;
    margin-bottom: -30px;
}

.contact-info {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-org-name {
    color: var(--secondary-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.contact-label {
    color: var(--secondary-red);
    font-weight: 700;
}

.contact-info a {
    color: #28a745;
    /* Green for email link usually, or can be red. Let's start with green or inherit */
    text-decoration: none;
    font-weight: 600;
}

.about-main-text {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: black;
}

.about-content strong {
    font-weight: 900;
}

/* Red highlights for specific text in main content */
.red-text {
    color: var(--secondary-red);
}

.highlight-text {
    color: var(--secondary-red);
    /* Changed from yellow to red based on request "certain text should be red" */
    font-weight: 700;
}

.mission-box {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.mission-box p {
    font-style: italic;
}

.mission-title {
    color: var(--secondary-red);
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-sidebar {
        width: 100%;
        margin-bottom: 30px;
        flex: none;
    }
}

/* --- Impact Section --- */
.impact-section {
    background-color: var(--primary-yellow);
    color: var(--text-black);
    padding: 60px 40px;
    /* Optional: Halftone pattern effect if requested, keeping it simple yellow for now */
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.impact-section .section-title {
    color: black;
    margin-bottom: 50px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.impact-check {
    color: var(--secondary-red);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
}

.impact-text h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.impact-text p {
    font-size: 1rem;
    line-height: 1.5;
}

.impact-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Shop Page Styling --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.shop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.shop-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.shop-item:hover .shop-image-container img {
    transform: scale(1.1);
}

.shop-label {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--secondary-red);
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Page Styling --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #f9f9f9;
    color: var(--text-black);
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question.active {
    background-color: var(--primary-yellow);
    color: var(--text-black);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.faq-content {
    padding: 20px;
    color: var(--text-black);
    line-height: 1.6;
    border-top: 1px solid #e0e0e0;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-content li {
    margin-bottom: 5px;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--text-white);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    list-style: none;
    border-top: 3px solid var(--secondary-red);
}

.dropdown-content li {
    width: 100%;
    margin: 0;
    /* Override any inherited margins */
}

.dropdown-content a {
    color: var(--text-black) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--secondary-red) !important;
}

.nav-links li:hover .dropdown-content {
    display: block;
}

/* --- Investor Form Styling --- */
.investor-form-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.investor-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.4;
    color: black;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
}

.required-text {
    color: var(--secondary-red);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-col {
    flex: 1;
}

.form-input,
.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fbfbfb;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: white;
}

.sub-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.btn-send {
    background-color: #2b6ed6;
    /* Blue color similar to screenshot */
    color: white;
    border: none;
    padding: 10px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s;
    margin-top: 10px;
    letter-spacing: 1px;
}

.btn-send:hover {
    background-color: #1a56b3;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Menu Page Styling --- */
.menu-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    /* Dark/Black title */
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-align: center;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 5px;
    text-align: center;
}

.menu-desc {
    font-size: 1rem;
    color: #333;
    max-width: 90%;
    margin: 0 auto 20px auto;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

/* Adjust shop item for menu usage if needed */
.shop-item.menu-item {
    background-color: transparent;
    /* Making it cleaner as per screenshot */
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-item.menu-item:hover {
    transform: none;
    box-shadow: none;
}

.shop-item.menu-item .shop-image-container {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    width: 100%;
}

.shop-item.menu-item img {
    border-radius: 8px;
    /* specific radius for images */
    max-height: 300px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.schedule-links {
    display: flex;
    gap: 15px;
    /* Spacing between links */
}

@media (max-width: 600px) {
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}