/* Google Fonts - Poppins & Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Poppins:wght@300;400;600&display=optional');

:root {
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --accent-blue: #b3e5fc;
    /* Light Blue */
    --accent-pink: #f8bbd0;
    /* Light Pink */
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-white);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-black);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-pink));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--accent-blue);
    color: var(--primary-black);
}

.btn-secondary:hover {
    background-color: var(--accent-pink);
    border-color: transparent;
}

/* Background Patterns - Paw Prints */
.paw-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: url("../img/paw.svg");
    /* Overlay pattern on top of content */
}

/* Replaced with simpler geometric shapes or distinct SVG later in HTML */

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-pink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #fff 50%, var(--bg-light) 50%);
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.5s backwards;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--accent-pink);
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}


.badge {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--primary-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-blue);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    font-weight: 700;
    background: linear-gradient(120deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* News Section */
.news {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    height: 200px;
    background-color: #ddd;
    /* Placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.8rem;
    color: #555555;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.contact-wrapper {
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.2;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-pink);
    border-radius: 50%;
    opacity: 0.2;
}

.contact h2 {
    color: var(--primary-white);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-blue);
}

.btn-submit {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--accent-blue);
    color: var(--primary-black);
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.love {
    color: var(--accent-pink);
    font-size: 1.2rem;
    margin: 0 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */

/* Institutional Section */
.institutional {
    padding: 100px 0;
    background-color: var(--primary-white);
    position: relative;
    /* geometric background pattern/shape could be added here */
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-item {
    background: var(--bg-light);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-blue);
}

.stat-item i {
    color: var(--primary-black);
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(120deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

.institutional-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 100px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-gov {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 60px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-gov::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(179, 229, 252, 0.1) 0%, rgba(248, 187, 208, 0.1) 100%);
    pointer-events: none;
}

.cta-gov h3 {
    color: var(--primary-white);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-gov .btn {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.2rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-wrapper {
        display: block;
        width: 100%;
        position: static;
        z-index: 2;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-top: 0;
        z-index: 0;
    }

    .hero-image img.hero-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Add an overlay to ensure text readability */
    .hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.6);
        /* Light overlay */
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.9);
        padding: 25px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 15px;
        text-align: center;
        backdrop-filter: blur(5px);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Add mobile menu toggle later if needed */
    }
}