/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    /* Logo extracted colors */
    --logo-blue: #1d408e;
    --logo-light: #fefefc;
    --logo-accent-red: #ff5c5c;

    /* Theme Derived */
    --primary: #4dade8;
    /* Lighter blue for dark bg */
    --accent: #ff9f9f;
    --text-main: #ffffff;
    --text-muted: #cbd5e1;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;

    /* Logo Gradient Background */
    background: linear-gradient(135deg, #0f2557 0%, #1d408e 50%, #10b981 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    background-attachment: fixed;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(77, 173, 232, 0.4);
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header / Under Development Section */
/* Header / Under Development Section */
.hero-section {
    /* Removed min-height to allow content to slide up */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px 20px;
    /* Greatly reduced padding */
    position: relative;
}

/* Separator styling */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--glass-border);
    opacity: 0.5;
}

.logo-wrap {
    width: 90px;
    /* Much smaller logo */
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* Reduced margin */
    box-shadow: 0 0 30px rgba(29, 64, 142, 0.3);
    animation: float 6s ease-in-out infinite;
}

.logo-wrap img {
    width: 60px;
    height: auto;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    /* Smaller title */
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    padding: 0 10px;
}

.hero-text {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Content Grid */
.content-wrapper {
    margin-top: 30px;
    /* Positive margin to space out from compact header */
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Press Release Specifics */
.pr-image-container {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pr-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover .pr-image {
    transform: scale(1.03);
}

.news-badge {
    display: inline-block;
    background-color: #ef4444;
    /* News Red */
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect for the badge */
.news-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.pr-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.pr-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    /* Ensure long words don't break layout */
}

.pr-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pr-body p {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.tags {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 20px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Footer Contact */
.footer-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s;
    width: auto;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.fb-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 1.1rem;
    padding: 12px 30px;
    background: var(--logo-blue);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(29, 64, 142, 0.4);
    width: auto;
    max-width: 100%;
}

.fb-link:hover {
    background: #2651b0;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive Logic */

/* Tablet & Smaller Laptops */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
        /* Reduce container padding */
    }

    .hero-section {
        min-height: auto;
        /* Allow content to dictate height */
        padding: 80px 10px 60px;
    }

    .logo-wrap {
        width: 100px;
        /* Smaller logo */
        height: 100px;
    }

    .logo-wrap img {
        width: 60px;
    }

    .card {
        padding: 25px 20px;
        /* Reduce card padding */
        border-radius: 15px;
    }

    .pr-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pr-body p {
        font-size: 1rem;
        /* Slightly smaller text for readability */
    }

    .contact-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-item {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .fb-link {
        width: 100%;
    }

    .content-wrapper {
        margin-top: 0;
        /* Remove negative margin overlap on mobile */
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}