:root {
    --primary-color: #E3D4EB;
    --secondary-color: #04746A;
    --gray-color: #7A7878;
    --light-gray-color: #D8D9D9;
    --highlight-color: #A8A8A8;
    --body-font: 'Open Sans', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

body {
    font-family: var(--body-font);
    background: linear-gradient(135deg, #fdfbfd 0%, var(--primary-color) 100%);
    min-height: 100vh;
    color: var(--gray-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #035c54;
    /* Darker shade of secondary */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--highlight-color);
}

.logo-img {
    /* max-width: 200px; Remove max-width to allow height to dictate size */
    max-height: 120px;
    width: auto;
}

section {
    padding: 3rem 0;
}

.footer {
    background-color: var(--light-gray-color);
    color: var(--gray-color);
    padding: 2rem 0;
}

/* Specific styling for the offerings schedule to match the vibe */
.schedule-item {
    border-bottom: 1px solid var(--light-gray-color);
    padding: 1rem 0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.day-time {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Navbar Mobile Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 10px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    }

    .nav-item {
        text-align: center;
        padding: 0.5rem 0;
    }
}