/* General styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #050d24;
    color: #f5f5dc;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    top: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

nav ul {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-right: 30px;
}

nav a {
    color: #f5f5dc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #e2b007;
}

main {
    max-width: 600px;
    margin: 40px auto;
    background: #0a1f44;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.intro h1 {
    color: #e2b007;
    margin-bottom: 10px;
}

.booking-form h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e2b007;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}

input, select, textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #f5f5dc;
    color: #232323;
    font-size: 1rem;
    margin-bottom: 10px;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid #e2b007;
}

button[type="submit"] {
    background: #e2b007;
    color: #232323;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #cfa106;
}
.btn{
    display: none;
}
/* Responsive styles for mobile devices */
@media (max-width: 768px){
    nav ul{
        display: none;
    }
    main {
    max-width: 550px;
}
    .btn{
        display: block;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
        margin-right: auto;
        margin-left: auto;
        height: 50px;
        width: 200px;
        padding-top: 10px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }
    .btn a{
        text-decoration: none;
        font-size: 1.2em;
        font-weight: 600;
        color: #0a1f44;
    }
    .btn:hover{
        background-color: #0a1f44;
    }
    .btn:hover a{
        color: white;
    }
}
@media (max-width: 480px) {
    main {
    max-width: 320px;
}
    
}