* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: bisque;
    text-align: center;
}

/* Navigation */
nav {
    background: beige;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem;
    background: rgba(25, 25, 25, 0.95);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background-color: beige;
    max-width: 280px;
}

.logo img {
    max-width: 280px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff9f00;
    transition: 0.3s;
}

/* media quries */
@media (max-width: 768px) {
    .navbar {
        background: #ff9f00;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Add new styles for the booking form */
.booking-form {
    background: white;
    color: #000;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff9f00;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

select {
    padding: 8px;
    /* Reduce padding for inputs */
    font-size: 1.2rem;
    /* Adjust font size */
}

.submit-btn {
    background: #ff9f00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        display: flex;
        flex-direction: column;
    }
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ff9f00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #fff;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ff9f00;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff9f00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #555;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* language */
.translate-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .translate-wrapper {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

.content {
    margin-top: 80px;
}

#google_translate_element select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    max-width: 150px;
}

/* Hide the default Google Translate widget */
.goog-te-banner-frame {
    display: none;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    color: #666;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.goog-te-gadget span {
    display: none;
}

/* WhatsApp Button Styles */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
    width: 35px;
    height: 35px;
}

#whatsapp-link {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 65px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    #whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-button img {
        width: 28px;
        height: 28px;
    }
}