:root {
    --red: #CE1126;
    --gold: #FCD116;
    --green: #006B3F;
    --dark: #241a1a;
    --cream: #fdfaf2;
    --warm: #f4fd764a;
    --sand: #f2d074;
    --bark: #4A3F35;
    --white-50: rgba(255,255,255,0.5);
    --white-70: rgba(255,255,255,0.7);
    --white-10: rgba(255,255,255,0.1);
    --white-05: rgba(255,255,255,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.641), rgba(0, 0, 0, 0.641)), url(/images/IMG_0634.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logic {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--green);
    transition: transform 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

em {
    font-style: italic;
    color: var(--gold);
    font-weight: normal;
}

strong {
    font-weight: 500;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}



.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section { padding: 8rem 0; }
}

.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm); }

/* ── Page top padding for navbar ── */
.page-top {
    padding-top: 7rem;
}

@media (min-width: 768px) {
    .page-top {
        padding-top: 10rem;
    }
}

/* ── Page navigation (prev/next) ── */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e7e5e4;
}

.page-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.page-nav-btn:hover {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-nav-btn .iconify {
    font-size: 1rem;
    transition: transform 0.3s;
}

.page-nav-btn.prev:hover .iconify {
    transform: translateX(-3px);
}

.page-nav-btn.next:hover .iconify {
    transform: translateX(3px);
}

/* ── Conclusion page-nav override (white border on dark bg) ── */
.conclusion .page-nav {
    border-top-color: var(--white-10);
}

.conclusion .page-nav-btn {
    background: var(--white-10);
    border-color: var(--white-10);
    color: #fff;
}

.conclusion .page-nav-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes kenteStripe {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pulseStar {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.anim {
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }
.d6 { animation-delay: 0.6s; }
.d7 { animation-delay: 0.7s; }
.d8 { animation-delay: 0.8s; }
.d9 { animation-delay: 0.9s; }

.obs {
    opacity: 0;
}

.obs.v {
    opacity: 1;
}

.obs.v.fu { animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.obs.v.sl { animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.obs.v.sr { animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

.kente-bar {
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
    background-size: 200% 100%;
    animation: kenteStripe 4s linear infinite;
    height: 4px;
    width: 100%;
}

#patriotism .kente-bar:first-child {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    #patriotism .kente-bar:first-child {
        margin-bottom: 3rem;
    }
}

.kente-bar.round {
    border-radius: 100px;
}

.fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
}

.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 249, 246, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.5s;
    border-bottom: 2px solid rgba(201, 246, 21, 0.984);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 768px) {
    .nav-inner { height: 80px; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo .iconify {
    color: var(--dark);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.logo:hover .iconify {
    transform: rotate(12deg);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-btn {
    padding: 0.625rem 1.25rem !important;
    background: var(--dark);
    color: var(--cream) !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: background 0.3s !important;
}

.nav-btn:hover {
    background: var(--red) !important;
    color: #fff !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: color 0.5s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown .dropbtn::after {
    content: '\2304';
    font-size: 0.75rem;
    color: var(--dark);
    transition: transform 0.5s;
}

.dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
}

.dropdown .dropbtn:hover,
.dropdown .dropbtn.active {
    color: var(--red);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    border: 1px solid #f5f5f4;
    overflow: hidden;
    z-index: 100;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem !important;
    font-weight: 500;
    color: var(--dark) !important;
    transition: all 0.3s;
    border-bottom: 1px solid #f5f5f4;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--sand);
    color: var(--red) !important;
    padding-left: 1.5rem;
   
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-btn:hover {
    background: var(--sand);
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

.menu-btn .iconify {
    font-size: 1.5rem;
    color: var(--dark);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 54;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--cream);
    z-index: 55;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-header {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .mobile-header {
        padding: 0.75rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .close-btn {
        width: 30px;
        height: 30px;
    }
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sand);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn:hover {
    background: var(--sand);
}

.close-btn .iconify {
    font-size: 1.5rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
}

.mobile-links a {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.mobile-links a:hover,
.mobile-links a.active {
    background: var(--sand);
    color: var(--red);
}

.mobile-note {
    font-size: 0.75rem;
    color: #a8a29e;
    padding: 0 1rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.6), rgba(26,26,26,0.4), rgba(26,26,26,0.7));
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(252, 209, 22, 0.15);
    animation: float 3s ease-in-out infinite;
}

.hero-circle.c1 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 2.5rem;
    display: none;
}

.hero-circle.c2 {
    width: 128px;
    height: 128px;
    bottom: 25%;
    right: 2.5rem;
    border-color: rgba(252, 209, 22, 0.08);
    display: none;
}

@media (min-width: 768px) {
    .hero-circle.c1,
    .hero-circle.c2 { display: block; }
}

.hero-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.hero-dot.d1 { top: 5rem; right: 25%; }
.hero-dot.d2 { bottom: 33%; left: 25%; opacity: 0.6; animation-delay: 0.5s; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3.75rem; }
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 5.5rem; }
}

.hero-desc {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.925);
    font-weight: 300;
    line-height: 1.7;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-desc { font-size: 1.125rem; }
}

.proverb {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: var(--white-10);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    max-width: 32rem;
    margin-top: 2.5rem;
}

.proverb::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 120px;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(252, 209, 22, 0.15);
    line-height: 1;
    pointer-events: none;
}

.proverb-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .proverb-text { font-size: 1.25rem; }
}

.proverb-source {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(252, 209, 22, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--white-50);
}

.note-line {
    width: 2rem;
    height: 1px;
    background: rgba(252, 209, 22, 0.3);
}

.hero-note .star {
    color: var(--gold);
    font-size: 1rem;
}

.scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-50);
    transition: color 0.3s;
}

.scroll-hint:hover {
    color: var(--gold);
}

.scroll-hint .iconify {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.scroll-hint:hover .iconify {
    transform: translateY(4px);
}

.tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}

.tag-gold {
    color: var(--gold);
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 2px;
    margin: 1rem 0;
}

.gold-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 6rem; }
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (min-width: 640px) {
    .section-header h2 { font-size: 3rem; }
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 3.75rem; }
}

.section-desc {
    margin-top: 1.5rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.7;
}

.sub-text {
    color: #a8a29e;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.light {
    color: #a8a29e;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
}

.gold-text {
    color: var(--gold);
}

.white-title {
    color: #fff;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.image-card img {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
    padding: 1.5rem;
}

.image-caption p {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-style: italic;
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.card-badge.dark {
    background: rgba(26,26,26,0.8);
    color: var(--gold);
}

.card-badge.red {
    background: rgba(206,17,38,0.9);
    color: #fff;
}

.card-badge.green-badge {
    background: rgba(0,107,63,0.9);
    color: #fff;
}

.card-badge.dark-badge {
    background: rgba(26,26,26,0.9);
    color: var(--gold);
}

.card-badge.gold-badge {
    background: var(--gold);
    color: var(--dark);
}

.content-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f4;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    aspect-ratio: 16 / 10;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

.card-hover-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.group:hover .card-hover-text {
    opacity: 1;
}

.group:hover .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.6), transparent);
}

.card-body {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card-body { padding: 2rem; }
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .card-body h3 { font-size: 1.75rem; }
}

.card-body p {
    color: #78716c;
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.card-dot.gold { background: var(--gold); }
.card-dot.green { background: var(--green); }
.card-dot.red { background: var(--red); }

.flag-block {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .flag-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 7rem;
    }
}

.flag-image-wrap {
    position: relative;
}

.flag-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(206,17,38,0.1), rgba(252,209,22,0.1), rgba(0,107,63,0.1));
    border-radius: 1.5rem;
    filter: blur(2rem);
    opacity: 0;
    transition: opacity 0.7s;
}

.flag-image-wrap:hover .flag-glow {
    opacity: 1;
}

.flag-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .flag-text h3 { font-size: 2.25rem; }
}

.flag-text p {
    color: #78716c;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.flag-colors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.color-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
}

.color-item.red { background: rgba(206,17,38,0.05); border: 5px solid rgba(244, 65, 86, 0.916); }
.color-item.gold { background: rgba(252,209,22,0.08); border: 5px solid rgba(252, 210, 22, 0.932); }
.color-item.green { background: rgba(0,107,63,0.05); border: 5px solid rgba(8, 119, 73, 0.996); }
.color-item.dark { background: rgba(26,26,26,0.04); border: 5px solid rgba(5, 5, 5, 0.945); }

.color-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.color-icon.gold-bg { background: var(--gold); color: var(--dark); }
.color-icon.green-bg { background: var(--green); }
.color-icon.dark-bg { background: var(--dark); }

.color-icon .iconify {
    font-size: 1.125rem;
}

.color-item h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.color-item p {
    font-size: 0.875rem;
    color: #a8a29e;
    font-weight: 300;
    margin: 0;
}

.two-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .two-cards {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.three-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .three-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 6rem;
    }
}

.three-cards .card-image img {
    aspect-ratio: 4 / 3;
}

.dark-card {
    background: var(--dark);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
}

.dark-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .dark-card h3 { font-size: 2.25rem; }
}

.dark-card p {
    color: var(--white-70);
    font-weight: 300;
    line-height: 1.7;
}

.dark-card .light {
    color: var(--white-50);
}

.greetings-text {
    padding: 2rem;
}

@media (min-width: 768px) {
    .greetings-text { padding: 3rem; }
}

@media (min-width: 1024px) {
    .greetings-text { padding: 4rem; }
}

.dark-card {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .dark-card { grid-template-columns: 1fr 1fr; }
}

.greetings-image {
    position: relative;
}

.greetings-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.2), transparent);
}

@media (min-width: 768px) {
    .greetings-image::after {
        background: linear-gradient(to right, rgba(26,26,26,0.2), transparent);
    }
}

.greeting-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.greeting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white-05);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--white-10);
}

.greeting-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(252, 209, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.greeting-icon .iconify {
    color: var(--gold);
    font-size: 1.25rem;
}

.greeting-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.9375rem;
}

.greeting-meaning {
    color: var(--white-50);
    font-size: 0.875rem;
}

.split-block {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .split-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 7rem;
    }
}

.split-block.reverse {
    direction: rtl;
}

.split-block.reverse > * {
    direction: ltr;
}

@media (max-width: 767px) {
    .split-block.reverse {
        direction: ltr;
    }
}

.split-image-wrap {
    position: relative;
}

.split-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(252,209,22,0.1), rgba(206,17,38,0.05));
    border-radius: 1.5rem;
    filter: blur(2rem);
    opacity: 0;
    transition: opacity 0.7s;
}

.split-image-wrap:hover .split-glow {
    opacity: 1;
}

.split-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.split-label .iconify {
    font-size: 1.25rem;
    color: var(--gold);
}

.split-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .split-text h3 { font-size: 2.25rem; }
}

.split-text p {
    color: #78716c;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1rem 0;
}

.name-item {
    background: var(--sand);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.name-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: var(--dark);
}

.name-item span {
    font-size: 0.75rem;
    color: #8a817c;
}

.featured-banner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
}

.featured-banner img {
    width: 100%;
    aspect-ratio: 21 / 9;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 768px) {
    .featured-banner img { aspect-ratio: 3 / 1; }
}

.featured-banner:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.8), rgba(26,26,26,0.5), transparent);
}

.featured-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .featured-text { padding: 3rem; }
}

@media (min-width: 1024px) {
    .featured-text { padding: 4rem; }
}

.featured-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #fff;
}

@media (min-width: 640px) {
    .featured-text h3 { font-size: 2.25rem; }
}

.featured-text p {
    color: var(--white-70);
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (min-width: 640px) {
    .featured-text p { font-size: 1rem; }
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.pill {
    padding: 0.5rem 1rem;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #78716c;
    border: 1px solid #e7e5e4;
}

.dark-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white-05);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--white-70);
    border: 1px solid var(--white-10);
}

.dark-pill .iconify {
    color: var(--gold);
}

.adinkra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.adinkra-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid #f5f5f4;
}

.adinkra-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
}

.adinkra-icon.gold-icon { background: rgba(252, 209, 22, 0.1); }
.adinkra-icon.green-icon { background: rgba(0, 107, 63, 0.1); }
.adinkra-icon.red-icon { background: rgba(206, 17, 38, 0.1); }
.adinkra-icon.dark-icon { background: rgba(26, 26, 26, 0.08); }

.adinkra-item p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.adinkra-item span {
    font-size: 0.75rem;
    color: #a8a29e;
}

.respect-block {
    margin-top: 3rem;
}

.col-5-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .col-5-3 { grid-template-columns: 3fr 2fr; }
}

.respect-text {
    padding: 2rem;
}

@media (min-width: 768px) {
    .respect-text { padding: 3rem; }
}

@media (min-width: 1024px) {
    .respect-text { padding: 4rem; }
}

.respect-image {
    position: relative;
}

.respect-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(26,26,26,0.15));
}

.respect-quote {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
}

.respect-quote .iconify {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(252, 209, 22, 0.3);
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.respect-quote p {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(252, 209, 22, 0.7);
    font-style: italic;
}

.nafac-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.reverse-dark {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .reverse-dark { grid-template-columns: 1fr 1fr; }
}

.nafac-image {
    position: relative;
    order: 1;
}

@media (min-width: 768px) {
    .nafac-image { order: 2; }
}

.nafac-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(26,26,26,0.15));
}

.nafac-text {
    padding: 2rem;
    order: 2;
}

@media (min-width: 768px) {
    .nafac-text { padding: 3rem; order: 1; }
}

@media (min-width: 1024px) {
    .nafac-text { padding: 4rem; }
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 1;
}

.gallery-item img {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0);
    transition: background 0.5s;
}

.gallery-item:hover::after {
    background: rgba(26, 26, 26, 0.6);
}

.gallery-item span {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.gallery-item:hover span {
    opacity: 1;
}

.conclusion {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .conclusion { padding: 8rem 0; }
}

.conclusion-bg {
    position: absolute;
    inset: 0;
}

.conclusion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.8), rgba(26,26,26,0.7), rgba(26,26,26,0.9));
}

.conclusion .container {
    position: relative;
    z-index: 10;
}

.glass-card {
    background: var(--white-10);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .glass-card { padding: 3rem; }
}

@media (min-width: 1024px) {
    .glass-card { padding: 4rem; }
}

.glass-card-sm {
    display: inline-block;
    background: var(--white-05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.glass-card-sm::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 120px;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(252, 209, 22, 0.15);
    line-height: 1;
    pointer-events: none;
}

.glass-card-sm p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    color: #fff;
    font-style: italic;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .glass-card-sm p { font-size: 2.25rem; }
}

@media (min-width: 768px) {
    .glass-card-sm p { font-size: 2.75rem; }
}

.nnoboa-block {
    max-width: 48rem;
    margin: 0 auto 5rem;
}

@media (min-width: 768px) {
    .nnoboa-block { margin-bottom: 6rem; }
}

.nnoboa-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(252, 209, 22, 0.15);
    border: 1px solid rgba(252, 209, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulseStar 2s ease-in-out infinite;
}

.nnoboa-icon .iconify {
    color: var(--gold);
    font-size: 1.75rem;
}

.glass-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .glass-card h3 { font-size: 2.5rem; }
}

@media (min-width: 768px) {
    .glass-card h3 { font-size: 3rem; }
}

.nnoboa-subtitle {
    color: var(--white-70);
    font-weight: 300;
    font-size: 1.125rem;
    margin: 0.5rem 0 1.5rem !important;
}

.glass-card p {
    color: var(--white-50);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.glass-card .light {
    color: rgba(255, 255, 255, 0.605);
}

.closing {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.closing-text {
    color: var(--white-50);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.marquee-wrap {
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 2.5rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    margin: 0 2rem;
}

.marquee-track .star {
    color: rgba(252, 209, 22, 0.35);
    margin: 0;
    font-size: 0.5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.5s;
}

.back-btn:hover {
    background: var(--red);
    color: #fff;
}

.back-btn .iconify:first-child {
    transition: transform 0.3s;
}

.back-btn:hover .iconify:first-child {
    transform: rotate(12deg);
}

.back-btn .iconify:last-child {
    transition: transform 0.3s;
}

.back-btn:hover .iconify:last-child {
    transform: translateY(-2px);
}

/* types of pat */

.section-padding { 
    padding: 80px 0;
    background: var(--white); }

.section-padding { 
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.section-header h2 { 
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 15px; }
.section-header h2 em {
     color: var(--green); }

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #03aa11;
    border-radius: 8px;
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.432);
}

.read{
    color: green;
    font-size: large;
    font-weight: 600;
     margin-top: 15px;
}


.card:hover { 
    background-color: #e4f4a6c7;
    transform: translateY(-10px); 
    border-color: var(--yellow); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);}

.card-icon { 
    font-size: 2.5rem; 
    margin-bottom: 20px;
 }
.card h3 {
     margin-bottom: 15px;
      font-size: 1.3rem; 
    }


.card p:hover { 
    color: #050505; 
    line-height: 1.6;
     transition: 0.3s;
     padding-left: 5px; 
     border-left: 3px solid var(--green);
 }

 .card p {
     color: #434242;
     font-weight: 300;
     line-height: 1.6;
     transition: 0.3s;
      padding-left: 0;
      border-left: 3px solid transparent;
      
 }



.footer {
    background: var(--dark);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-about p {
    color: var(--white-50);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-about .logo {
    color: #fff;
}

.footer-about .logo .iconify {
    color: var(--gold);
}

.footer-links h4,
.footer-symbols h4 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--white-50);
    font-size: 0.875rem;
    transition: color 0.3s;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-symbols p {
    color: var(--white-50);
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bark);
}

/* Ghana Flag Loader */
.loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-icon .iconify {
    font-size: 4rem;
}

.nav-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 8px;
}

.logo .nav-logo-img + .nav-logo-img {
    margin-left: 8px;
    margin-right: 8px;
    width: 12px;
    height: 12px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .logo .nav-logo-img + .nav-logo-img {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .logo .nav-logo-img + .nav-logo-img {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1280px) {
    .logo .nav-logo-img + .nav-logo-img {
        width: 25px;
        height: 25px;
    }
}

.logo span {
    margin: 0 4px;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .nav-logo-img {
    width: 36px;
    height: 36px;
    margin-right: 6px;
}

.mobile-logo .nav-logo-img + .nav-logo-img {
    margin-left: 4px;
    margin-right: 0;
    width: 7px;
    height: 7px;
}

@media (min-width: 480px) and (max-width: 639px) {
    .mobile-logo .nav-logo-img + .nav-logo-img {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .mobile-logo .nav-logo-img + .nav-logo-img {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-logo .nav-logo-img + .nav-logo-img {
        width: 18px;
        height: 18px;
    }
}

.ghana-flag-img {
    width: 70px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    animation: spin 1.5s linear infinite;
}

.small-flag {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}

.small-ghana {
    font-size: 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
}

.contact-hero .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/IMG_0634.jpg);
}

.section-padding {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.contact-section-header h2 {
    color: var(--dark);
}

.contact-section-header h2 em {
    color: var(--red);
}

.contact-section-header .section-desc {
    color: #4a4545;
    font-weight: 400;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-section-header .section-desc {
        margin-bottom: 6rem;
    }
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff, #fefcf5);
    border-radius: 0.75rem;
    border: 2px solid #e8e4d8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    background: #fff;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .iconify {
    color: #fff;
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 1rem;
    color: #4a4545;
    font-weight: 500;
}

.social-links {
    padding-top: 1.5rem;
    border-top: 2px solid var(--sand);
}

.social-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #a00d1e);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(206, 17, 38, 0.3);
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(252, 209, 22, 0.4);
}

.social-icons .iconify {
    color: #fff;
    font-size: 1.25rem;
}

.social-icons a:hover .iconify {
    color: var(--dark);
}

.contact-form-wrap {
    background: linear-gradient(145deg, #ffffff, #fdfbf3);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--gold);
}

@media (min-width: 768px) {
    .contact-form-wrap {
        padding: 2.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #d4cfc4;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #fffdf8;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(252, 209, 22, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a8a29e;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), #e8bc0a);
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(252, 209, 22, 0.4);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e8bc0a, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 209, 22, 0.5);
}

.submit-btn .iconify {
    font-size: 1.125rem;
}

.map-section {
    padding-bottom: 4rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--dark), #3d2f2f);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-placeholder .iconify {
    font-size: 3rem;
    color: var(--gold);
}

.map-placeholder p {
    color: var(--white-70);
    font-size: 1rem;
    font-weight: 300;
}

.fade-up {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }

/* Gallery Page Styles */
.gallery-hero {
    min-height: 60vh;
}

.gallery-hero .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/IMG_0634.jpg);
}

.gallery-section {
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.slideshow-btn {
    background: linear-gradient(135deg, var(--red), #a00d1e) !important;
    color: #fff !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.slideshow-btn:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
    transform: translateY(-2px);
}

.slideshow-btn .iconify {
    font-size: 1.1rem;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .iconify {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.75rem;
    color: var(--white-70);
}

/* Quiz Page Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-progress .progress-bar {
    flex: 1;
    height: 6px;
    background: #eedaa3;
    border-radius: 100px;
    overflow: hidden;
}

.quiz-progress .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #CE1126, #FCD116, #006B3F);
    border-radius: 100px;
    transition: width 0.5s ease;
}

.quiz-progress .progress-text {
    font-size: 0.875rem;
    color: #78716c;
    font-weight: 500;
    min-width: 60px;
}

.quiz-question {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.quiz-question.active {
    display: block;
}

.quiz-question .question-number {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #CE1126;
    margin-bottom: 0.5rem;
}

.quiz-question .question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #231a1a;
}

.quiz-question .options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-question .option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 2px solid #f5f5f4;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quiz-question .option:hover {
    border-color: #fc7616;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quiz-question .option.selected {
    border-color: #FCD116;
    background: rgba(252, 209, 22, 0.12);
}

.quiz-question .option.correct {
    border-color: #006B3F;
    background: rgba(0, 107, 63, 0.1);
}

.quiz-question .option.incorrect {
    border-color: #CE1126;
    background: rgba(206, 17, 38, 0.1);
}

.quiz-question .option .option-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8c538;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #241a1a;
    flex-shrink: 0;
    transition: all 0.3s;
}

.quiz-question .option.selected .option-letter {
    background: #FCD116;
    color: #241a1a;
}

.quiz-question .option.correct .option-letter {
    background: #006B3F;
    color: #fff;
}

.quiz-question .option.incorrect .option-letter {
    background: #CE1126;
    color: #fff;
}

.quiz-question .option .option-text {
    font-weight: 400;
    font-size: 1rem;
    color: #241a1a;
    line-height: 1.5;
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e7e5e4;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.quiz-btn-primary {
    background: #241a1a;
    color: #fdfaf2;
}

.quiz-btn-primary:hover {
    background: #CE1126;
}

.quiz-btn-primary:disabled {
    background: #e7e5e4;
    color: #ef670d;
    cursor: not-allowed;
}

.quiz-btn-secondary {
    background: transparent;
    color: #241a1a;
    border: 2px solid #e7e5e4;
}

.quiz-btn-secondary:hover {
    border-color: #241a1a;
}

.quiz-result {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quiz-result.active {
    display: block;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.quiz-result .result-score {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CE1126, #FCD116, #006B3F);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-result .result-score .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.quiz-result .result-score .label {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.quiz-result .result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.quiz-result .result-message {
    color: #ee751e;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result .result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quiz-result .result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-hero {
    min-height: 60vh;
}

.gallery-section {
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.gallery-filters .filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-filters .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filters .filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-section .gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .gallery-overlay .iconify {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-section .gallery-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.gallery-section .gallery-overlay p {
    font-size: 0.75rem;
    color: var(--white-70);
}

.gallery-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Styles */

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}


/* Quiz Page Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-progress .progress-bar {
    flex: 1;
    height: 6px;
    background: #f2d074;
    border-radius: 100px;
    overflow: hidden;
}

.quiz-progress .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #CE1126, #FCD116, #006B3F);
    border-radius: 100px;
    transition: width 0.5s ease;
}

.quiz-progress .progress-text {
    font-size: 0.875rem;
    color: #78716c;
    font-weight: 500;
    min-width: 60px;
}

.quiz-question {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.quiz-question.active {
    display: block;
}

.quiz-question .question-number {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #CE1126;
    margin-bottom: 0.5rem;
}

.quiz-question .question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #241a1a;
}

.quiz-question .options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-question .option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 2px solid #f5f5f4;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quiz-question .option:hover {
    border-color: #FCD116;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quiz-question .option.selected {
    border-color: #FCD116;
    background: rgba(252, 209, 22, 0.12);
}

.quiz-question .option.correct {
    border-color: #006B3F;
    background: rgba(0, 107, 63, 0.1);
}

.quiz-question .option.incorrect {
    border-color: #CE1126;
    background: rgba(206, 17, 38, 0.1);
}

.quiz-question .option .option-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2d074;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #241a1a;
    flex-shrink: 0;
    transition: all 0.3s;
}

.quiz-question .option.selected .option-letter {
    background: #FCD116;
    color: #241a1a;
}

.quiz-question .option.correct .option-letter {
    background: #006B3F;
    color: #fff;
}

.quiz-question .option.incorrect .option-letter {
    background: #CE1126;
    color: #fff;
}

.quiz-question .option .option-text {
    font-weight: 400;
    font-size: 1rem;
    color: #241a1a;
    line-height: 1.5;
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e7e5e4;
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.quiz-btn-primary {
    background: #241a1a;
    color: #fdfaf2;
}

.quiz-btn-primary:hover {
    background: #CE1126;
}

.quiz-btn-primary:disabled {
    background: #e7e5e4;
    color: #a8a29e;
    cursor: not-allowed;
}

.quiz-btn-secondary {
    background: transparent;
    color: #241a1a;
    border: 2px solid #e7e5e4;
}

.quiz-btn-secondary:hover {
    border-color: #241a1a;
}

.quiz-result {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quiz-result.active {
    display: block;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.quiz-result .result-score {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CE1126, #FCD116, #006B3F);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-result .result-score .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.quiz-result .result-score .label {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.quiz-result .result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.quiz-result .result-message {
    color: #78716c;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result .result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quiz-result .result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-hero {
    min-height: 60vh;
}

.gallery-section {
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.gallery-filters .filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-filters .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filters .filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-section .gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .gallery-overlay .iconify {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-section .gallery-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.gallery-section .gallery-overlay p {
    font-size: 0.75rem;
    color: var(--white-70);
}

.gallery-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-fade-up.visible {
    transform: translateY(0);
}

.nav-logo-imge{
    width: 50px;
    height: 50px;

}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Base responsive styles for small devices */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .page-top {
        padding-top: 5rem;
    }
    
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    h4 { font-size: 1.1rem !important; }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .tag {
        font-size: 0.65rem;
    }
    
    .logo {
        font-size: 1rem !important;
    }
    
    .logo .iconify {
        font-size: 1.25rem !important;
    }
    
    .nav-inner {
        height: 50px;
    }
    
    .menu-btn {
        width: 32px;
        height: 32px;
    }
    
    .menu-btn .iconify {
        font-size: 1.25rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .proverb {
        padding: 1rem;
    }
    
    .proverb-text {
        font-size: 0.85rem;
    }
    
    .proverb-source {
        font-size: 0.75rem;
    }
    
    .hero-note {
        font-size: 0.7rem;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.25rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .split-block {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        order: -1;
    }
    
    .split-content {
        padding: 1.5rem;
    }
    
    .split-content h3 {
        font-size: 1.5rem;
    }
    
    .split-content p {
        font-size: 0.95rem;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .footer {
        padding: 2.5rem 0;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-about p {
        font-size: 0.8rem;
    }
    
    .footer-links a,
    .footer-symbols p {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .kente-bar {
        height: 4px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .gold-line {
        margin: 1rem auto;
    }
    
    .read-more {
        font-size: 0.85rem;
    }
    
    .scroll-hint {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    :root {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .page-top {
        padding-top: 4.5rem;
    }
    
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.35rem !important; }
    h3 { font-size: 1.15rem !important; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 0.85rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .proverb {
        padding: 0.75rem;
    }
    
    .proverb-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 240px) {
    :root {
        font-size: 12px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .grid-layout {
        gap: 1rem;
    }
}

/* Tablet styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-block {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large tablet styles (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape phone styles */
@media (max-width: 667px) and (orientation: landscape) {
    .hero {
        min-height: 0;
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.85rem;
        max-width: 30rem;
    }
}

/* Extra small devices */
@media (max-width: 280px) {
    :root {
        font-size: 12px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-inner {
        height: 45px;
        width: 100%;
    }
    
    .logo {
        font-size: 0.85rem !important;
    }
    
    .logo .iconify {
        font-size: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Mission Section Panel */
.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.read-more-btn:hover {
    background: var(--red);
    color: white;
}

.mission-panels {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-panels.active {
    display: flex;
    opacity: 1;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.panel-content {
    position: relative;
    background: var(--cream);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.mission-panels.active .panel-content {
    transform: scale(1);
}

.panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.panel-close:hover {
    transform: rotate(90deg);
}

.panel-item {
    display: none;
    animation: fadeUp 0.5s ease forwards;
}

.panel-item.active {
    display: block;
}

.panel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.panel-item h3 {
    color: var(--red);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.panel-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--dark);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .panel-content {
        padding: 1.5rem;
    }
    
    .panel-item h3 {
        font-size: 1.5rem;
    }
}

/* Our Goals Section */
#our-goals {
    background: linear-gradient(135deg, var(--cream) 0%, #f8f4e8 100%);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.goal-image {
    height: 200px;
    overflow: hidden;
}

.goal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.goal-card:hover .goal-image img {
    transform: scale(1.1);
}

.goal-content {
    padding: 1.5rem;
    position: relative;
}

.goal-number {
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    background: var(--red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
}

.goal-content h3 {
    color: var(--green);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.goal-content p {
    color: var(--bark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.goal-content ul {
    list-style: none;
    padding: 0;
}

.goal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.5;
}

.goal-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.goal-content .read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--green);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.goal-content .read-more-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: white;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

.lightbox-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-content img {
        max-height: 60vh;
    }
}

.slideshow-control {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), #a00d1e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.slideshow-control:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateX(-50%) translateY(-2px);
}

.slideshow-control .iconify {
    font-size: 1.25rem;
}

@media (max-width: 900px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-card {
        max-width: 500px;
        margin: 0 auto;
    }
}