/* Base Styles */
:root {
    --primary-text: #ffffff;
    --accent-color: #ff69b4;
    --secondary-bg: #1a1a1a;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--primary-text);
    background-attachment: fixed;
}

#vanta-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it's behind all content */
}

.banner-logo {
    max-width: 200px; /* Adjust this value to set the desired size of your logo */
    height: auto;
    position: relative;
    z-index: 2;
}

.logo-image {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    background-image: url('../public/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 15px;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--primary-text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;   
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--accent-color);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px;
}

section {
    margin-bottom: 60px;
}

h1, h2 {
    color: var(--primary-text);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-weight: 700; /* This makes the font thinner */
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.gallery-banner {
    width: 100%;
    padding: 60px 0;
    background-image: url('../public/banner-2.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
}

.-gallery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 30px 30px;
}

/* Calendar Section */
.calendar-section {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto 40px auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.calendar-container {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

.calendar-header {
    text-align: center;
    margin-bottom: 15px;
}

#calendar-month {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
    text-align: center;
}

.calendar-weekdays div {
    padding: 4px;
    font-weight: bold;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.calendar-day {
    aspect-ratio: 1;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
}

.calendar-day span {
    display: block;
    margin-bottom: 2px;
}

.calendar-day.inactive {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
}

.event-link {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
    padding: 2px 4px;
    border-radius: 4px;
    background: rgba(255, 105, 180, 0.1);
}



/* Carousel Section */
.carousel-section {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel {
    position: relative;
    margin: 40px 0;
}

.carousel-container {
    overflow: hidden;
    margin: 0 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 300px;
    margin: 0 15px;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--section-bg);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-color);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Titles */
.cta-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Calendar Mobile Optimizations */
    .calendar-section {
        padding: 6px;
        width: calc(100% - 1rem);
        margin: 0.25rem 0.5rem;
        border-radius: 6px;
    }

    .calendar-container {
        padding: 0;
    }

    #calendar-month {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .calendar-header {
        margin-bottom: 3px;
    }

    .calendar-weekdays {
        gap: 1px;
        padding: 0;
        margin-bottom: 1px;
    }

    .calendar-weekdays div {
        font-size: 0.6rem;
        padding: 1px 0;
    }

    .calendar-days {
        gap: 1px;
        padding: 0;
    }

    .calendar-day {
        min-height: 22px;
        font-size: 0.6rem;
        padding: 1px;
        border-radius: 2px;
        gap: 0;
    }

    .calendar-day span {
        margin: 0;
    }

    .event-link {
        font-size: 0.5rem;
        padding: 0;
        width: 94%;
        margin-top: 1px;
        border-radius: 1px;
    }

    /* Carousel Mobile Optimizations */
    .carousel-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 1rem;
        border-radius: 12px;
    }

    .carousel {
        margin: 20px 0;
    }

    .carousel-container {
        margin: 0 25px;
    }

    .carousel-slide {
        flex: 0 0 220px;
        margin: 0 8px;
    }

    .carousel-slide img {
        height: 150px;
        border-radius: 8px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.7);
    }

    .prev-btn {
        left: -12px;
    }

    .next-btn {
        right: -12px;
    }

    /* Title adjustments for mobile */
    .cta-title {
        font-size: 1.8rem;
        margin: 30px 0;
    }
}