@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --nigeria-green: #008751;
    --adc-green: #006b3f;
    --adc-yellow: #fcd116;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Playfair Display", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    text-slate-900;
    background: #f8fafc;
    color: #1e293b;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.btn-primary {
    background: var(--nigeria-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--adc-green);
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section-padding {
    padding: 5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

nav .logo img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

nav .logo span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

nav.scrolled .logo span {
    color: #1e293b;
}

nav .nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

nav .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav.scrolled .nav-links a {
    color: #475569;
}

nav.scrolled .nav-links a:hover {
    color: var(--nigeria-green);
}

nav .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    nav .nav-links {
        display: flex;
    }
    nav .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0f172a, rgba(15, 23, 42, 0.8), transparent);
}

/* Slideshow */
.slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0f172a;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    pointer-events: none;
}

.slideshow-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slide-dot.active {
    background: var(--nigeria-green);
    border-color: white;
    transform: scale(1.2);
}

.slideshow-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 20;
    pointer-events: none;
}

.slideshow-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    padding-top: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: rgba(0, 135, 81, 0.2);
    color: var(--nigeria-green);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 135, 81, 0.3);
}

.hero-badge img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero h1 span {
    color: var(--nigeria-green);
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator div {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding: 0.25rem;
}

.scroll-indicator div div {
    width: 0.25rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    border: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-quote {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--adc-green);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 16rem;
    display: none;
}

@media (min-width: 1024px) {
    .about-quote {
        display: block;
    }
}

.about-quote svg {
    color: var(--adc-yellow);
    margin-bottom: 1rem;
}

.about-quote p {
    color: white;
    font-style: italic;
    font-family: var(--font-serif);
}

.about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stats > div {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
}

.about-stats h4 {
    color: var(--nigeria-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-stats p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Vision Section */
.vision {
    background: #0f172a;
    color: white;
    padding: 6rem 1.5rem;
}

.vision-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.vision-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .vision-header h2 {
        font-size: 3rem;
    }
}

.vision-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.7;
}

.vision-grid {
    display: grid;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vision-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(0, 135, 81, 0.2);
    color: var(--nigeria-green);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-card:hover .vision-card-icon {
    transform: scale(1.1);
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Campaign Banner */
.campaign-banner {
    background: var(--adc-yellow);
    padding: 4rem 1.5rem;
}

.campaign-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .campaign-banner-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.campaign-banner h2 {
    font-size: 1.875rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.campaign-banner p {
    color: #1e293b;
    font-size: 1.125rem;
}

.campaign-banner a {
    background: #0f172a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.campaign-banner a:hover {
    background: #1e293b;
    transform: scale(1.02);
}

/* Gallery Section */
.gallery {
    background: #f8fafc;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.gallery-header p {
    color: #64748b;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
}

.gallery-item:first-child img {
    aspect-ratio: 2/1;
}

@media (max-width: 767px) {
    .gallery-item:first-child {
        grid-column: span 1;
    }
    .gallery-item:first-child img {
        aspect-ratio: 1;
    }
}

.gallery-cta {
    grid-column: span 2;
    background: var(--nigeria-green);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    border-radius: 1rem;
}

@media (max-width: 767px) {
    .gallery-cta {
        grid-column: span 1;
    }
}

.gallery-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.gallery-cta-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-cta-link > div {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-cta-link span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background: #f8fafc;
    padding: 6rem 1.5rem;
}

.contact-grid {
    display: grid;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background: var(--nigeria-green);
    color: white;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item > div:first-child {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 4rem;
}

.contact-socials a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.contact-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-form {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nigeria-green);
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.contact-form .success-message,
.contact-form .error-message {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .success-message {
    background: #dcfce7;
    color: #166534;
}

.contact-form .error-message {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
}

footer p {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #64748b;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Admin Toggle */
.admin-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
}

.admin-toggle button {
    padding: 0.5rem 1rem;
    background: var(--nigeria-green);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.admin-toggle button:hover {
    transform: scale(1.05);
}

/* Floating Campaign Badge */
.floating-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    z-index: 40;
    cursor: pointer;
}

@media (min-width: 768px) {
    .floating-badge {
        width: 8rem;
        height: 8rem;
    }
}

.floating-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.floating-badge:hover img {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--nigeria-green);
}
