/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-family: 'Boldonse', sans-serif;
    color: #ffcc00;
    font-size: 1.5rem;
    margin-top: 5px;
    margin-bottom: 5px;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
}

footer .social-icons {
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-bottom: 0; 
}

footer .social-icon {
    text-decoration: none;
    font-size: 1.75rem; 
    color: #555; 
    transition: color 0.3s ease; 
}

footer .social-icon:hover {
    color: #ffcc00 !important;
}

footer p {
    margin-top: 0; 
    font-size: 0.75rem; 
    color: #6c757d; 
    margin-bottom: 0; 
}

.py-4 {
    padding-top: 10px !important;
    padding-bottom: 5px !important;
}

.mt-3 {
    margin-top: 5px !important;
}

/* Home page Styles */
#hero-jumbotron {
    position: relative;
    background-image: url('/static/images/homepage.jpg');
    background-size: cover;
    background-position: center center;
    height: 50vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-jumbotron::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#hero-jumbotron h1, #hero-jumbotron p {
    position: relative;
    z-index: 2; 
}

@media (max-width: 768px) {
    #hero-jumbotron p {
        font-size: 1.25rem; 
    }
}


@media (max-width: 480px) {
    #hero-jumbotron p {
        font-size: 1rem;
    }
}

#bio {
    padding:30px;
    width: 80%;
}

/* Booking page styles */
form {
    max-width: 600px; 
    margin: 0 auto; 
}

.btn-yellow {
    background-color: #ffcc00;
    color: white;
    border: none; 
    font-size: 16px; 
    padding: 10px 20px;
    border-radius: 5px; 
    margin-top: 20px;
}

.btn-yellow:hover {
    background-color: #e0a800;
    color: white;
}

#bookingTitle, #bookingSubtitle {
    text-align: center;
}

#bookingTitles {
    padding-top: 20px;
    padding-bottom: 20px;
}

.form-group {
    padding-bottom: 10px;
}

.message-container {
    text-align: center;
    margin-top: 40px;
}

.custom-message.error-message {
    background-color: #f598a1; 
    color: black;
}

.custom-message.success-message {
    background-color: #d1f4b1;
    color: black;
}

.custom-message {
    padding: 20px;
}

/* Menu styles */
.accordion-button {
    background-color: #fff9db !important;
    color: #333  !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff3bf !important;
    color: #111 !important;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125) !important;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
}

.carousel-inner {
    height: 600px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

