@font-face {
    font-family: 'Alta';
    /* Make sure the path matches your filename exactly! */
    src: url('../fonts/alta-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000000;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #f4f4f4;
}

.hero {
    background: linear-gradient(to bottom, #2e0007 1%, #ffffff 50%, #2e0007 99%);
    
    text-align: center; /* Center align content */
    padding: 50px 20px; /* Add padding for spacing */
}

.hero h1 {
    font-family: 'Alta', sans-serif;
    font-size: 2.5rem;
    font-size: clamp(70px, 8vw, 96px);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #FDBC38;
    margin-top: 0%;
}


.hero p {
        font-family: 'Montserrat', sans-serif; /* Montserrat font */
        font-weight: 300; /* Light weight */
        font-size: 18px; /* Font size */
        line-height: 1.5; /* Optional: Better readability */
        color: #ffffff; /* Text color */
        text-align: left;
    }

    .hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 300; /* Light weight */
        font-size: 62px;
        color: #FDBC38; /* Text color */
    }


.about h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; /* Light weight */
}

.about p {
    font-family: 'Montserrat', sans-serif; /* Montserrat font */
        font-weight: 300; /* Light weight */
        font-size: 18px; /* Font size */
        line-height: 1.5; /* Optional: Better readability */
        color: #000000; /* Text color */
}
.about, .events {
    background-color: #2e0007;
    box-shadow: 0 4px 10px rgba(0,0,0,1);
}


.hero .btn {
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.about, .events, .footer {
    padding: 2rem;
    text-align: center;
}

.event-card {
    border: 1px solid #FDBC38;
    padding: 1rem;
    margin: 1rem 0;
}

.event-card h3 {
        color: #FDBC38;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 300;
        font-size: 1.5rem;
}

.footer {
    background-color: #2e0007;
    color: #fff;
    padding: 1rem;
    margin-bottom: 0; /* Remove any margin at the bottom */
}

.footerr {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    margin-top: 0; /* Remove any margin at the top */
    padding: 0.5rem 1rem; /* Add padding as needed */
}

.btn0 {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #FDBC38;
    color: #2e0007;
    border: 2px solid #FDBC38;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.btn0:hover {
    background-color: #2e0007;
    color: #FDBC38;
    transform: translateY(-3px);
}

.btn0.secondary {
    background-color: transparent;
    border: 2px solid #2e0007;
    color: #2e0007;
}

.btn0.secondary:hover {
    background-color: #2e0007;
    color: #FDBC38;
}

.important {
    font-weight: 600;
    color: #ffffff; /* red for emphasis */
    margin: 1.2em 0;
}
.signature {
    font-style: italic;
    margin-top: 1.5em;
}

-------------------
/* Ensure event-card has white text overall (cascades to p, li, etc.) */
.event-card {
    border: 1px solid #FDBC38;
    padding: 2rem; /* Increased padding for better breathing room */
    margin: 2rem auto; /* Centered and spaced */
    max-width: 900px; /* Prevents text from stretching too wide on large screens */
    background-color: rgba(46, 0, 7, 0.85); /* Slightly transparent dark red for depth, optional */
    border-radius: 12px; /* Softer corners */
    color: white; /* Default text color white for everything inside */
}

/* Headings in event-card: Make h4/h5 match h3 gold color */
.event-card h4,
.event-card h5 {
    color: #FDBC38;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Strong/bold text: Force white as you requested */
.event-card strong {
    color: white !important; /* Overrides any inheritance */
}

/* Lists: Better spacing and bullets */
.event-card ol,
.event-card ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.event-card li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    text-align: left;
}

/* Important note: Make it stand out more (light red text on subtle bg) */
.important {
    font-weight: 600;
    color: #ffcccc; /* Soft red for visibility on dark bg */
    background-color: rgba(253, 188, 56, 0.1); /* Subtle gold tint bg */
    padding: 1.2rem;
    border-left: 5px solid #FDBC38;
    border-radius: 6px;
    margin: 1.5rem 0;
}

/* Signature */
.signature {
    font-style: italic;
    margin-top: 2rem;
    color: #FDBC38; /* Gold to match branding */
    text-align: center;
}

/* Fix hero gradient text overlap (if any text outside event-card) */
.hero {
    background: linear-gradient(to bottom, #2e0007 1%, #ffffff 50%, #2e0007 99%);
    color: white; /* Fallback */
    text-align: center;
    padding: 6rem 2rem 4rem; /* More top padding for h1 */
}

.hero h1 {
    color: #FDBC38;
    font-size: clamp(70px, 8vw, 96px);
    margin-bottom: 4rem;
}

/* Ensure events section doesn't conflict */
.events {
    background-color: #2e0007;
    padding: 3rem 1rem;
}

/* Button: Already good, but add focus state for accessibility */
.btn0:focus {
    outline: 3px solid #FDBC38;
    outline-offset: 4px;
}

.social-links a {
    color: #D4A017;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B88C14;
}

