/* Navbar background and padding */
.navbar {
    background-color: #ffffff; /* Change to desired color */
    border-bottom: 2px solid #ddd; /* Subtle divider line */
    padding: 1rem 2rem;
}

/* Navbar links */
.nav-link {
    color: #6c757d !important; /* Dark gray for readability */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #495057 !important; /* Slightly darker on hover */
}

/* Logo adjustments */
.navbar-brand img {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navbar mobile adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 90px;
    }
}


/* Adjust carousel image height */
.carousel-item img {
    height: 500px; /* Set desired height */
    object-fit: cover;
}


/* Gallery Section */
#gallery {
    background-color: #f9f9f9;
}

#gallery h2 {
    font-weight: bold;
    color: #333;
}

/* Gallery Section */
#gallery {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

#gallery h2 {
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Custom Card Styling */
.custom-card {
    overflow: hidden;
    border: none;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 450px; /* Set a consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Image Styling with Animation */
.custom-card img {
    height: 250px; /* Fix image height for consistency */
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.custom-card:hover img {
    transform: scale(1.2); /* More noticeable zoom effect */
}

/* Card Body Text */
.custom-card .card-title {
    font-weight: bold;
    color: #333;
}

.custom-card .card-text {
    color: #555;
    font-size: 0.9rem;
}

/* Adjust Card Padding */
.custom-card .card-body {
    padding: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-card {
        height: auto; /* Adjust for mobile */
        margin-bottom: 1rem;
    }
    .custom-card img {
        height: 200px; /* Smaller image height on mobile */
    }
}



/* Calendar Grid Styling */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.day-header {
    font-weight: bold;
    text-align: center;
    padding: 0.5rem;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.day-slot {
    position: relative;
    background-color: #ffffff;
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 5px;
    min-height: 100px;
}

.day-slot p {
    margin: 0;
    font-weight: bold;
}

.time-slot {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #e0f7fa;
    color: #00796b;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.time-slot:hover {
    background-color: #b2ebf2;
}

/* Modal Styling */
.modal-header {
    background-color: #00796b;
    color: white;
}

.modal-content {
    border-radius: 10px;
}
