@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
:root {
    --color-gold: #D4AF37;
    --color-gold-dark: #B8942F;
    --color-brown: #8B4513;
    --color-brown-dark: #654321;
    --color-dark: #2c1810;
    --color-cream: #f8f4f0;
    --color-tan: #e8d9c6;
    --primary-gold: #D4AF37;
    --secondary-gold: #B8942F;
    --dark-bg: #0f0f0f;
    --section-bg: #1a1a1a;
    --card-bg: #151515;
    --text-light: #ffffff;
    --text-grey: #a0a0a0;
    --accent-green: #006B3F;
    --accent-red: #C8102E;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.7;
    color: var(--color-dark);
    overflow-x: hidden;
    background: var(--color-cream);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 2.5rem;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress { to { width: 100%; } }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-brown);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover { transform: scale(1.05); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover { color: var(--color-brown); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--color-gold);
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    color: var(--color-dark) !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.hero-1 {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/independence square, accra, ghana.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
    font-style: italic;
}

.hero-artist {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: none;
    font-style: italic;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-light);
}

.hero-content img {
    display: none;
}

.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-grey);
}

.scroll-indicator button {
    padding: 1rem 2.5rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.scroll-indicator button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: var(--secondary-gold);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(10px);
    }
    60% {
        transform: rotate(45deg) translateY(5px);
    }
}

.filters {
    padding: 4rem 5% 2rem;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-grey);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.filters button:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.filters button.active {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.grid {
    padding: 2rem 5% 6rem;
    background: var(--dark-bg);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-body {
    padding: 1.5rem;
}

.card-year {
    font-size: 0.85rem;
    color: var(--text-grey);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.btn-explore:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.spotlight {
    padding: 6rem 5%;
    background: var(--section-bg);
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

.spotlight .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spotlight .card {
    text-align: left;
    background: var(--card-bg);
}

.spotlight .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.spotlight .card h3 {
    padding: 1rem 1rem 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.spotlight .card p {
    padding: 0 1rem 1rem;
    color: var(--text-grey);
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--section-bg);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.modal-content .modal-year {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.modal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-content .proverb {
    font-style: italic;
    color: var(--primary-gold);
    border-left: 3px solid var(--primary-gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.modal-content .details-list {
    margin-top: 1.5rem;
}

.modal-content .details-list h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.modal-content .details-list ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-grey);
}

.modal-content .details-list li {
    margin-bottom: 0.5rem;
}

.modal-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: var(--transition);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--card-bg);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: var(--transition);
    max-width: 90%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-left-color: var(--accent-green);
}

.toast.error {
    border-left-color: var(--accent-red);
}

.site-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 2rem;
}

.site-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.site-modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.site-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.site-modal-close:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.site-modal-body {
    padding: 2.5rem;
}

.site-modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.site-modal-body .modal-year {
    font-size: 1rem;
    color: var(--text-grey);
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.site-modal-body .modal-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.modal-section p {
    color: var(--text-grey);
    line-height: 1.7;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section ul li {
    color: var(--text-grey);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.site-modal-body .modal-btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.site-modal-body .modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: var(--secondary-gold);
}

.footer {
    background: #050505;
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-shadow: 0 0 0 9999px #050505;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    margin: 0 auto 2rem;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

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

    .filters {
        gap: 0.5rem;
    }

    .filters button {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .site-modal {
        padding: 1rem;
    }
    
    .site-modal-body {
        padding: 1.5rem;
    }
    
    .site-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
}