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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FULL PAGE HERO IMAGE */
.hero-section {
    position: relative;
    height: 100vh; /* Takes up 100% of the viewport height */
    width: 100%;
    /* REPLACE THE URL BELOW WITH YOUR IMAGE PATH */
    background-image: url('/image/flag.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay to ensure text is perfectly readable over any image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    letter-spacing: 4px;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e2e8f0;
}


.hero-title a {
  color: #90D5FF;
  text-decoration: none;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #b91c1c; /* Deep Patriotic Red */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
}

/* CONTENT SECTION */
.content-section {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: #1e3a8a; /* Deep Navy Blue */
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #b91c1c;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
    font-weight: 300;
}

/* GRID / CARDS SECTION */
.grid-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #1e3a8a;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-family: 'Cinzel', serif;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: #4b5563;
    font-size: 1rem;
}

/* FOOTER */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .content-section {
        padding: 60px 0;
    }
}