/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: black;
    color: white;
    overflow-x: hidden;
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    background: #032740;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: lightskyblue;
}

.availability {
    font-size: 12px;
    color: white;
}

.menu-icon {
    font-size: 18px;
    cursor: pointer;
    background: rgb(95, 174, 224);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Side Navigation Menu */
nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: right 0.3s ease-in-out;
}

nav.active {
    right: 0;
}

nav .close-btn {
    align-self: flex-end;
    margin: 20px;
    cursor: pointer;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 700;
}

nav ul li a:hover {
    color: lightskyblue;
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    text-align: center;
}

.contact-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
}

.contact h1 {
    font-size: 36px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-box {
    background: transparent;
    border: 1px solid white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
}

.contact-box i {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-box span {
    font-size: 16px;
    font-weight: bold;
}

.contact-box p {
    margin-top: 5px;
    font-size: 14px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.contact-form {
    margin-top: 20px;
}

.contact-form p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 250px;
    font-size: 16px;
}

.contact-form button {
    padding: 10px;
    background: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}



