/* 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: 14px;
    color: white;
}

.menu-icon {
    font-size: 18px;
    cursor: pointer;
    background: rgb(95, 174, 224);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Contact Info */
.contact-info {
    font-size: 14px;
}

/* 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;
}


/* Hero Section */

.white{
    font-size: 20px;
}


.gold{
    font-family: Mistral;
    font-size: 50px;
}

.hero p {
    font-size: 60px;
}

.hero p1{
    font-size: 500%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: left;
    padding: 20px;
}

.image-container {
    flex: 1;
    padding: 20px;
}

.image-container img {
    width: 70%;
    border-radius: 10px;
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.text-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 16px;
}

.quote {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.signature {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.sign-name {
    font-size: 18px;
    font-style: italic;
}
