body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 100%;
    color: white;
    background-color: black;
}

.nav img{
    position:fixed;
    height:680px;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.phone, .location {
    width: 20px;
}

.top-bar {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    padding: 10px 100px;
    background: rgba(0, 0, 50, 0.6);
    position:fixed;
    gap: 110px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 60px;
}

.contact-info {
    display:block;
    justify-content: center;
    margin-left: 200px;
    font-size: 14px;
}

.logo2{
    padding-top: 200px;
    width: 600px;
}

nav {
    display: flex;
    gap:30px;
}

.nav-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 10px;
    border-radius: 20px;
    cursor: pointer;
}

.contact-section {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 40px;
}

.slider-container {
    flex:1;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.slider {
    display: flex;
    width: calc(380px * 8);
    animation: slide 15s linear infinite;
}

.slider img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-380px * 4)); }
}
.reservation-content {
    flex: 1;
    padding-left: 40px;
}

.reservation-content h2 {
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type=text], 
input[type=email], 
input[type=tel], 
input[type=date], 
input[type=time], 
input[type=number], 
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 20px;
    box-sizing: border-box;
    margin-top: 6px;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #252525;
    color: #5894CC;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1872D9;
    color: #ffffff;
}


footer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    width: 97%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.social-media img {
    width: 30px;
    margin: 0 5px;
}

.legal-links {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 5px 0;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: grey;
}

.reservation-content h2{
    color: #ffffff;
}
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        width: calc(100% - 20px);
    }
    
    .contact-info {
        margin-left: 0;
        font-size: 12px;
    }
    
    nav {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        height: 40px;
    }
    
    .contact-content {
        width: 95%;
        margin-top: 150px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        text-align: center;
        margin-top: 15px;
    }
}