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

:root {
    --primary: #0f1108;
    --accent: #f5f0e8;
    --gold: #d4a843;
    --green: #2d5016;
    --red: #c1272d;
    --yellow: #f4ca16;
    --earth: #8b5a3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary);
    color: var(--accent);
    overflow-x: hidden;
}

/* Ethiopian Pattern Overlay */
.pattern-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 168, 67, 0.03) 2px, rgba(212, 168, 67, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(193, 39, 45, 0.03) 2px, rgba(193, 39, 45, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(193, 39, 45, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 202, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 80, 22, 0.5) 0%, transparent 70%),
        linear-gradient(135deg, #1a1f0f 0%, #0f1108 50%, #2d1810 100%);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 40%);
}

/* Ethiopian-inspired geometric shapes */
.hero-shape {
    position: absolute;
    opacity: 0.6;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

.shape-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
}

.shape-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    border: 3px solid var(--red);
    opacity: 0.25;
    animation: rotate 25s linear infinite reverse;
}

.shape-2::before,
.shape-2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--green);
}

.shape-2::after {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
}

.shape-3 {
    top: 50%;
    right: 5%;
    width: 100px;
    height: 100px;
    transform: translateY(-50%) rotate(45deg);
    border: 2px solid var(--green);
    opacity: 0.2;
    animation: float 15s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(45deg) translateX(0); }
    50% { transform: translateY(-50%) rotate(45deg) translateX(30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.5s forwards;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.2) 0%, transparent 70%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    border: 3px solid var(--gold);
    color: var(--gold);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: var(--accent);
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(193, 39, 45, 0.4);
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    opacity: 0;
    transition: opacity 0.4s;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-3px);
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.5);
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn:hover span {
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto;
}

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* About Preview Section */
.about-preview {
    padding: 10rem 2rem;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.1) 50%, transparent 100%);
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    opacity: 0.7;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: var(--accent);
}

.section-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.9;
    opacity: 0.8;
    font-weight: 300;
    color: var(--accent);
}

/* Visual Highlight Section */
.visual-section {
    padding: 6rem 2rem;
    position: relative;
}

.visual-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 168, 67, 0.3);
}

.visual-item:nth-child(1) {
    grid-column: 1 / 7;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--green) 0%, var(--earth) 100%);
}

.visual-item:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
    aspect-ratio: 0.8;
    background: linear-gradient(135deg, var(--red) 0%, var(--earth) 100%);
}

.visual-item:nth-child(3) {
    grid-column: 1 / 7;
    aspect-ratio: 1.2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 100%);
}

.visual-item:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 168, 67, 0.3);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 17, 8, 0.7), rgba(45, 80, 22, 0.5));
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.visual-item:hover .visual-overlay {
    opacity: 1;
}

.visual-text {
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Ticket CTA Section */
.ticket-cta {
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(193, 39, 45, 0.1) 50%, transparent 100%);
}

.ticket-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ticket-content {
    position: relative;
    z-index: 10;
}

.ticket-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    color: var(--gold);
}

.ticket-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.detail-item {
    text-align: center;
    position: relative;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.detail-label {
    font-size: 0.875rem;
    opacity: 0.6;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
}

.detail-value {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Footer */
footer {
    padding: 5rem 2rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(212, 168, 67, 0.2);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 17, 8, 0.5) 100%);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--yellow);
}

.footer-bottom {
    font-size: 0.75rem;
    opacity: 0.5;
    color: var(--accent);
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
}


a i.fab.fa-instagram {
    font-size: 24px;
    color: #E1306C; /* Instagram gradient color or any color you like */
    transition: transform 0.2s;
}

a i.fab.fa-instagram:hover {
    transform: scale(1.1);
}

a i.fab.fa-tiktok {
    font-size: 24px;
    color: #69C9D0; /* TikTok brand color */
    transition: transform 0.2s;
}

a i.fab.fa-tiktok:hover {
    transform: scale(1.1);
}

