/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar Styles */
.navbar.navbar-custom {
    position: fixed; /* Stick navbar to the top */
    top: 0; /* Position at the top of the viewport */
    width: 100%; /* Make navbar full width */
    z-index: 1000; /* Ensure the navbar stays on top of other content */
    background-color: rgba(51, 51, 51, 0.5) !important; /* Semi-transparent background color */
    backdrop-filter: blur(10px) !important; /* Apply blur effect */
}

.navbar.navbar-custom .navbar-brand img {
    width: 250px; /* Adjust the width of the logo */
    max-height: none; /* Ensure the height can scale as needed */
}

.navbar.navbar-custom .navbar-brand {
    font-family: 'Leckerli One', cursive;
    font-size: 1.5rem;
    color: #ff5400 !important; /* Apply color directly to navbar-brand */
}

.navbar.navbar-custom .navbar-nav .nav-link {
    color: #ff5400 !important;
    font-weight: bold;
}

.navbar.navbar-custom .navbar-nav .nav-link:hover {
    color: #cef0fd !important;
}

/* Push down content to make space for the fixed navbar */
body {
    padding-top: 80px; /* Adjust as needed depending on the navbar height */
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5400;
    color: #fff;
    text-decoration: none;
    border-radius: 10px !important;
    transition: background-color 0.3s ease;
}

.btn:hover {
    color: #ff5400;
    background-color: #ffffff;
    border-color: #ff5400;
} 

.btn-primary {
    border-color: #ff5400 !important;
    background-color: #ff5400 !important;
    color: #fff;
    border-radius: 10px !important;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    color: #ff5400 !important;
    background-color: #ffffff !important;
    border-color: #ff5400 !important;
}

/* footer style */
#footer {
	background-color: #f5f5f5;
	color: #272825;
	font-family: 'Roboto', sans-serif;
}

#footer ul {
	list-style-type: none;
	padding-left: 0;
	line-height: 2.2;
}

#footer h5 {
	font-size: 18px;
  text-align: center;
	color: #272825;
	margin-top: 40px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#footer a {
	color: #aaa;
}

#footer a:hover,
#footer a:focus {
	text-decoration: none;
	color: #272825;
}

#footer .social-networks {
	padding-top: 20px;
	padding-bottom: 25px;
}

#footer .footer-items .fa {
	font-size: 17px;
	margin-bottom: 5px;
	color: #ff5400;
  border: 1px solid #ff5400;
	border-radius: 50%;
	padding-bottom: 25px;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 31px;
	text-decoration: none;
	transition: color 1s;
}


#footer .footer-items {
	margin: auto;
  text-align: center;
	
	font-size: 15px;
}

#footer .fa:hover,
#footer .fa-instagram:hover {
	border: 1px solid #fff;
	color: #fff;
	background-color: #ff5400;
}


.footer-copyright {
	background-color: #f5f5f5;
}

.footer-copyright p {
	text-align: center;
	color: #272825;
	font-size: 15px;
	padding: 10px 0;
	margin-bottom: 0;
}

#footer .hr-foot {
	width: 80%;
  	margin: 10px auto;
  	border: 1px solid #ff5400;
}

/* Footer Copyright Section Styles */
.footer-copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
    font-weight: bold;
    color: #ff5400;
}

.footer-copyright a {
    color: #ff5400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #e54400;
}

.footer-copyright::before,
.footer-copyright::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 10px 0;
}

.footer-copyright a.footer-link {
    font-weight: bold;
}

/* Center buttons on smaller screens */

@media (max-width: 992px) {
.btn, .btn-primary {
    display: flex !important;
    margin: 0 auto;
    justify-content: center;
    }
}
@media (max-width: 576px) {
.btn, .btn-primary {
    display: flex !important;
    margin: 0 auto;
    justify-content: center;
    }
}

/* booking section */

/* #booking-section {
    margin: 150px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-button {
    margin-left: 20px !important;
    padding: 10px 20px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button.active {
    background-color: #ff5400;
    color: #ffffff;
}

.tab-button:hover {
    background-color: #ff5400;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

form label {
    flex-basis: 100%;
    margin-bottom: 5px;
}

form input,
form select,
form button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    flex-grow: 1;
}

form .form-group {
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
}

form .form-group.horizontal {
    flex-direction: row;
    align-items: center;
}

form .form-group.horizontal label {
    margin-right: 10px;
    flex-basis: auto;
}

form .form-group.horizontal input,
form .form-group.horizontal select {
    flex-grow: 1;
}

form button {
    background-color: #ff5400;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-basis: 100%;
}

form button:hover {
    background-color: #e04e00;
} */