/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Lato:400,700&display=swap');

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    background: linear-gradient(to bottom, #000033, #000000); /* Deep navy to black */
}

a {
    color: inherit;
    text-decoration: none; /* Remove underline from hyperlinks */
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 51, 0.8); /* Adjusted color */
    padding: 10px 0;
    z-index: 1000;
}

#header.scrolled {
    background: rgba(0, 0, 51, 1);
}

#header .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between logo and menu */
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

.logo-part1 {
    color: #FFD700; /* Gold color */
}

.logo-part2 {
    color: #FFFFFF; /* White color */
    margin-left: 5px;
}

/* Hamburger Menu Icon Styles */
.hamburger {
    display: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

/* Navigation Menu Styles */
nav {
    /* No margin or padding needed */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section Styles */
#hero {
    height: 100vh;
    background: linear-gradient(to bottom right, #000033, #000000); /* Adjusted colors */
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #FFD700; /* Gold color */
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(to right, #000033, #FFD700); /* Adjusted gradient */
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: linear-gradient(to right, #FFD700, #000033);
}

/* Countdown Timer Styles */
#countdown {
    background: #000033; /* Adjusted color */
    padding: 50px 0;
    text-align: center;
}

#countdown h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

#timer {
    font-size: 48px;
    font-weight: 700;
}

/* City Sections */
#cities {
    background: #FFFFFF;
    color: #000033; /* Adjusted text color */
    padding: 50px 0;
}

#cities h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.city-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.city-card {
    background: #000033; /* Adjusted color */
    color: #FFFFFF;
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 30px 20px;
}

.city-card h3 {
    margin: 20px 0;
}

.city-card .cta-button {
    margin-top: 10px;
}

/* Benefits Section */
#benefits {
    padding: 50px 0;
}

#benefits h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.benefit-item {
    width: 22%;
    text-align: center;
    margin-bottom: 20px;
}

.icon-placeholder {
    font-size: 50px;
    margin-bottom: 15px;
    color: #FFD700; /* Gold color for icons */
}

.benefit-item h3 {
    margin-bottom: 10px;
}

.benefit-item p {
    color: #CCCCCC;
}

/* Event Concept Preview */
#event-preview {
    background: #000033; /* Adjusted color */
    padding: 50px 0;
}

#event-preview h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.concept-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.concept-item {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.concept-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.concept-item p {
    font-size: 16px;
}

/* Application Process */
#application-process {
    padding: 50px 0;
    background: #FFFFFF;
    color: #000033; /* Adjusted text color */
}

#application-process h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    width: 18%;
    text-align: center;
    margin-bottom: 20px;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #FFD700; /* Gold color */
    margin-bottom: 10px;
}

.step h3 {
    font-size: 18px;
}

/* Contact Form Styles */
#contact {
    padding: 50px 0;
    background: #000033; /* Adjusted color */
    color: #FFFFFF;
}

#contact h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.contact-form input::placeholder {
    color: #CCCCCC;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #FFD700; /* Gold color */
    color: #000033; /* Adjusted text color */
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #FFFFFF;
}

/* Footer Styles */
#footer {
    background: #000000;
    padding: 30px 0;
    text-align: center;
    color: #FFFFFF;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #FFD700; /* Gold color */
    margin: 0 15px;
    text-decoration: none;
}

/* Fade Effect for Rotating City Names */
#city-name {
    transition: opacity 0.5s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Hamburger Menu Icon */
    .hamburger {
        display: block;
    }

    /* Navigation Menu Styles */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 51, 0.95); /* Adjusted color */
        transition: left 0.3s ease-in-out;
        z-index: 999; /* Below the header */
    }

    nav.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 24px;
    }

    /* Header Container */
    #header .container {
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center; /* Center items vertically */
        justify-content: space-between; /* Space between logo and hamburger */
    }

    /* Adjust other elements for mobile view */
    .city-card,
    .benefit-item,
    .concept-item,
    .step {
        width: 80%;
    }

    .contact-form {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    #timer {
        font-size: 36px;
    }
}
