/* ===== CSS Variables - Ghana Colors ===== */
:root {
    --ghana-red: #CF0921;
    --ghana-gold: #FCD20E;
    --ghana-green: #006B3F;
    --primary-black: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ghana-red) 33%, var(--ghana-gold) 33%, var(--ghana-gold) 66%, var(--ghana-green) 66%);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ghana-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 24px;
    background: linear-gradient(to bottom, var(--ghana-red) 0%, var(--ghana-red) 33%, var(--ghana-gold) 33%, var(--ghana-gold) 66%, var(--ghana-green) 66%, var(--ghana-green) 100%);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

.logo-icon::after {
    content: "★";
    color: black;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu .links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px 0;
}

.did-you-know-btn a {
    color: var(--ghana-red);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-menu {
    display: flex;
    margin-left: auto;
}

.nav-menu .links {
    display: flex;
    gap: 25px;
}

.nav-menu .links a:hover {
    color: var(--ghana-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.did-you-know-btn {
    padding: 8px 20px;
    border: 2px solid var(--ghana-red);
    border-radius: 25px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.did-you-know-btn a {
    color: var(--ghana-red);
    font-weight: 600;
    font-size: 0.875rem;
}

.did-you-know-btn:hover {
    background: var(--ghana-red);
}

.did-you-know-btn:hover a {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999;
}

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



.mobile-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--ghana-green);
    background: var(--light-bg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%), url('arch.jpg') center top no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 100px 50px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--ghana-gold);
    border-radius: 20px;
    color: var(--primary-black);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ghana-gold);
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--ghana-gold);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.btn-primary {
    background: var(--ghana-gold);
    color: var(--primary-black);
    border: 2px solid var(--ghana-gold);
}

.btn-primary:hover {
    background:transparent;
    border-color: var(--ghana-green);
    color: var(--white);
}

.btn-secondary {
    background:transparent ;
    color: var(--white);
    border: 2px solid var(--ghana-gold) ;
}

.btn-secondary:hover {
    background:var(--ghana-gold) ;
    color: var(--text-dark);
}

.hero-statistics {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ghana-gold);
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--ghana-gold);
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--ghana-green) 0%, #004d2f 100%);
    padding: 50px 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--ghana-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-info .stat-suffix {
    font-size: 1rem;
    color: var(--ghana-gold);
    font-weight: 600;
}

.stat-info .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3px;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Section Styles ===== */
main {
    padding-top: 60px;
}

section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-header .section-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--ghana-green);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--ghana-green);
    font-weight: 700;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

/* ===== Patriotism Section ===== */
.patriotism-section {
    background: var(--white);
}

.patriotism-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.patriotism-card-image {
    width: 100%;
    height: 150px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.patriotism-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.patriotism-card {
    background: #f8fdf9;
    border: 1px solid var(--ghana-green);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: left;
    transition: var(--transition);
}

.patriotism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.patriotism-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ghana-green) 0%, #008a52 100%);
}

.patriotism-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.patriotism-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.patriotism-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #f8fdf9;
    border: 1px solid var(--ghana-green);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: left;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-icon {
    width: 65px;
    height: 65px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ghana-green) 0%, #004d2f 100%);
    font-size: 1.5rem;
    color: var(--white);
}

.about-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Explore Section ===== */
.explore-section {
    background: var(--light-bg);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-card {
    height: 320px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: var(--transition);
}

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

.explore-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.explore-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.explore-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ghana-gold);
    color: var(--primary-black);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.explore-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.explore-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.explore-link {
    color: var(--ghana-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.explore-card:hover .explore-link {
    gap: 12px;
}

/* ===== Facts Section ===== */
.facts-section {
    background: linear-gradient(135deg, var(--ghana-green) 0%, #004d2e 100%);
    padding: 80px 20px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.fact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ghana-gold);
    margin-bottom: 15px;
    line-height: 1;
}

.fact-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.fact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
footer {
    background: var(--primary-black);
    padding: 40px 20px 25px;
    border-top: 4px solid var(--ghana-green);
}

footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ghana-red) 33%, var(--ghana-gold) 33%, var(--ghana-gold) 66%, var(--ghana-green) 66%);
    margin-bottom: 50px;
    margin-top: -48px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--ghana-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--ghana-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ghana-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--ghana-gold);
    color: var(--primary-black);
    border-color: var(--ghana-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.875rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .patriotism-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .patriotism-grid,
    .about-grid,
    .explore-grid,
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    header {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .did-you-know-btn {
        display: none;
    }

    .hero {
        padding: 100px 25px 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin: 0 auto 30px;
        padding: 0 20px;
    }

    .explore-card {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 35px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-info .stat-number {
        font-size: 1.5rem;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}