/* ---------- Base Variables & Global Styles ---------- */
/*color pallete*/
:root{
    --primary-color: #bd724a;
    --secondary-color: #6c584c;
    --text-color: #2e1f15;
    --bg-color: #f4e4d4;
    --navbar-color: #745644;
    }
    
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Host Grotesk', Courier, monospace;
}
/* -------------------- */
body {
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.banner {
    background-color: var(--primary-color); /*LCMD Banner */
    color: white;
    font-weight: bold;
    font-size: 1.5rem; /* Slightly smaller than index page */
    text-align: center;
    padding: 15px; /* Slightly smaller padding */
    font-family: 'Oswald', sans-serif !important;
    position: relative;
}

.banner::before,
.banner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px; /* Slightly thinner lines */
    background-color: white;
}

.banner::before {
    top: 8px; /* Adjusted for smaller banner */
}

.banner::after {
    bottom: 8px; /* Adjusted for smaller banner */
}

.calender-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: #77543f;
    padding: 40px;
}

.calender-container h1 {
    font-size: 2.5rem;
    margin: 20px;
    padding: 0;
    color: white;
}

.calender-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    min-width: 300px;
    min-height: 300px;
    max-width: 1200px;
    max-height: 800px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add custom styles for calendar background */
.calender-container iframe {
    background-color: rgba(212, 200, 190, 0.8) !important;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .calender-container iframe {
        min-height: 500px;
        margin-bottom: 20px;
    }
    
    .calender-container h1 {
        font-size: 2rem;
    }

    .calender-container {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .calender-container {
        padding: 20px;
    }

    .calender-container iframe {
        min-height: 400px;
        margin-bottom: 20px;
    }
}
