/* ================= VARIABLES ================= */
:root {

    --accent-red: #e31e24;
    --accent-red-hover: #b3171b;
    --text-dark: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
}

/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    overflow-x: hidden;
    color: var(--text-dark);
}

/* ================= NAVBAR ================= */
.navbar {
    position: relative;
    z-index: 1000;
    background-color: var(--primary-blue);
}

.dropdown-menu {
    position: absolute;
    z-index: 1001;
    margin-top: 0;
    padding-top: 0;
    border-top: 15px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

/* ================= HERO ================= */
.australia-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.australia-hero img.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 58, 138, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInDown 1s ease-out;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

/* ================= NEW CONTENT SECTION ================= */
.content-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.content-container h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    color: var(--primary-blue);
    font-weight: 700;
    color: #1e3a8a;
}

.content-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Optional subtle section separation */
.content-container h2::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-red);
    margin-bottom: 12px;

}


/* ================= ANIMATION ================= */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown-item {
        color: white !important;
    }

    .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .australia-hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .content-section {
        padding: 40px 15px;
    }

    .content-container h2 {
        font-size: 1.5rem;
    }

    .content-container p {
        font-size: 0.95rem;
    }
}
