*,
*::before,
*::after {
  box-sizing: border-box;
}


html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    box-sizing: border-box; 
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
    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-color: #850808; /* Light gray background */
    
    text-align: center; /* Center align content */
    padding: 50px 20px; /* Add padding for spacing */
}

.hero h1 {
    font-size: 96rem;
    margin-bottom: 1rem;
    color: #FDBC38; /* Text color */
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; /* Light weight */
    font-size: clamp(70px, 8vw, 96px);
    max-width: 100%;
    padding: 0 20px;
}


.hero p {
        font-family: 'Montserrat', sans-serif; /* Montserrat font */
        font-weight: 300; /* Light weight */
        font-size: clamp(14px, 2vw, 18px); /* Font size */
        line-height: 1.5; /* Optional: Better readability */
        color: #ffffff; /* Text color */
    }

    .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 */
}

.container h3 {
    color: #FDBC38;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.5rem;
}

.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: #850808;
}


.hero .btn {
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.container {
    display: flex;
    justify-content: space-between; /* Ensures space between the blocks */
}
.left-block,
.right-block {
    width: 48%; /* Adjust width as needed */
    padding: 20px;
    background-color: #850808;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.container p,
.left-block p,
.right-block p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.about, .events, .footer {
    padding: 2rem;
    text-align: center;
}

.event-card {
    border: 1px solid #FDBC38;
    padding: 1rem;
    margin: 1rem 0;
}

.footer {
    background-color: #850808;
    color: #fff;
    padding: 1rem;
    margin-bottom: 0; /* Remove any margin at the bottom */
}

.footerr {
    background-color: #000000;
    margin-top: 0; /* Remove any margin at the top */
    padding: 0.5rem 1rem; /* Add padding as needed */
}

