/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #0b3d91;       /* Rich Blue */
    --primary-dark: #07265d;
    --secondary-color: #f8c146;     /* Gold */
    --dark-color: #0b1329;         /* Very Dark Navy */
    --light-bg: #f8fafc;
    --transition-smooth: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.navbar-brand img {
    height: 55px;
}

.navbar-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Main Content wrapper */
.main-wrapper {
    flex: 1;
    padding: 50px 0;
}

/* Coming Soon / Under Construction Banner */
.coming-soon-banner {
    text-align: center;
    margin-bottom: 50px;
}

.coming-soon-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(11, 61, 145, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.coming-soon-banner h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 15px;
}

.coming-soon-banner p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
}

/* Image Display Styling - Making them same size */
.flyer-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.flyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.flyer-img-container {
    height: 600px; /* Force identical container height */
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.flyer-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keeps entire image visible and proportional */
}

/* Footer Styling */
footer {
    background-color: var(--dark-color);
    color: #94a3b8;
    padding: 50px 0 0;
}

footer h5 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 3px;
}

/* Copyright Banner */
.copyright-law-banner {
    background-color: #070c1b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    color: #8a99ad;
    font-size: 0.82rem;
    line-height: 1.6;
}

.copyright-law-banner strong {
    color: #e2e8f0;
}

.copyright-law-banner p {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .flyer-img-container {
        height: 450px; /* Shorter for tablet/mobile */
    }
}
@media (max-width: 575.98px) {
    .flyer-img-container {
        height: 350px; /* Shorter for small phones */
    }
}