:root {
    --primary-color: #5b7065;
    --primary-dark: #44564d;
    --text-color: #2c3e3f;
    --light-bg: #f8f7f3;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
}

/* Hero Section */
.hero {
  background: url("/assets/img/mttom.avif") center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh; /* This makes it full viewport height */
    display: flex;
    align-items: flex-start;
    padding: 1rem 0; /* Add some top padding */
}

.hero-t {
  background: linear-gradient(0deg, hsla(205, 96%, 39%, 1) 0%, hsla(286, 44%, 49%, 1) 100%);
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1rem 0; /* Add some top padding */
}

.hero .content, .hero-t .content {
    position: relative;
    z-index: 2;
    width: 100%; /* Take full width */
    padding: 0 1rem; /* Add horizontal padding */
    margin: 0 auto; /* Center the content */
}

.hero h1, .hero-t h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow for better readability */
}

.hero .lead, .hero-t .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Add text shadow for better readability */
}

.hero .bottom-container, .hero-t .bottom-container {
    margin-top: auto;
    padding: 2rem 0;
}
/* Adjust for smaller screens */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sections */

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section p {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1.6;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Event Cards */
.event-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.event-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 40px 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-links {
    margin: 20px 0;
}

.social-link {
    display: inline-block;
    margin: 0 10px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 60px 0;
    }
}