/* Color Scheme */
:root {
    --cream: #f9f0e1;
    --red: #cd1125;
    --green: #017b3d;
    --dark: #1a1a1a;
    --light: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--green);
}

.dropdown-arrow {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--green);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: var(--light);
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: var(--green);
    padding-left: 30px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 123, 61, 0.85) 0%, rgba(1, 123, 61, 0.7) 50%, rgba(1, 123, 61, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--light);
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    font-style: italic;
}

.hero-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    letter-spacing: 1px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Questions Section */
.questions-section {
    background-color: var(--green);
    padding: 100px 0 80px 0;
    color: var(--light);
    position: relative;
}

.questions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--light);
}

.questions-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.question-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.question-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.country-list {
    list-style: none;
    margin: 15px 0;
    font-size: 1.2rem;
}

.country-list li {
    padding: 8px 0;
    font-weight: 600;
}

.airport-info {
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 1rem;
}

.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-divider-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Info Section */
.info-section {
    background-color: var(--red);
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--light);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-text p {
    margin: 5px 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        background-color: var(--dark);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description,
    .hero-tagline {
        font-size: 1rem;
    }

    .questions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
