@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');


:root{
    --primary-color:#6366F1;
    --accent-color:#3f83f8;
    --text-color:#333333;
    --link-color:#2563eb;
    --background-color:#ffffff;
    --light-gray:#f0f0f0;
    --gray:#808080;
    --dark-gray:#555;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Inter',sans-serif;
    text-decoration:none;
}

body{
    
    text-align: center;
   
}

.header-content{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold ;
    color:var(--text-color);
    text-decoration: none;
    gap: 0.625rem;
}

.logo-image{
    height:4.5rem ;
    width: 5.5rem;
   
}

.logo-text{
    font-size: 1.5rem;
    font-weight: bold;
}

.nav{
    display: none;
    gap: 1.5rem;
}

@media screen and (min-width:768px){
    .nav{
        display: flex;
   
}
}


.nav-link{
    color: #718096;
    font-size:1.125rem ;
    font-weight: 600;
    transform: color 0.1s;
}

.nav-link:hover{
    color: var(--link-color);
}

.contact-button{
    display: none;
    border: none;
    border-radius: 0.35rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}


@media screen and (min-width:768px) {

    .contact-button{
        display: block;
}
}  


.contact-button:hover{
    background-color: #5254f8;

}

.menu-button{
    display: none;
    border: none;
    border-radius: o.375rem;
    background-color: var(--background-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;

}

@media screen and (max-width:768px) {
    .menu-button{
        display: block;
        
    }
    
}
.menu-icon{
   
    height: 1.5rem;
    width: 1.5rem;
}
/* Booking Section */
.booking-section {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    align-items: center;
    margin: 2rem auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

/* Booking Title */
.booking-title {
    color: rgb(15, 15, 15);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto;
}

/* Form Fields */
.form-group {
    text-align: left;
}

.form-group label {
    color: rgb(44, 36, 36);
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 90%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border: 2px solid black;
}

/* Booking Button */
.booking-button {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease;
    height: 50px;
    width: 200px;
   
    
}

.booking-button:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-section {
        width: 95%;
    }
}

