/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #e94560;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b7334a;
    text-decoration: none;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.9em;
}

/* Header */
header {
    background-color: #16213e;
    padding: 10px 0;
    border-bottom: 1px solid #0f3460;
}

header h1 {
    margin: 0;
    float: left;
}

header h1 a {
    color: white;
    text-decoration: none;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    font-weight: bold;
}

/* Hero Section */
#hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Featured Lounges */
#featured-lounges {
    padding: 40px 0;
    background-color: #0f3460;
    text-align: center;
}

#featured-lounges h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: white;
}

.lounge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lounge-item {
    background-color: #16213e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lounge-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.lounge-item h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #e94560;
}

.lounge-item p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* Newsletter */
#newsletter {
    padding: 40px 0;
    background-color: #1a1a2e;
    text-align: center;
}

#newsletter h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

#newsletter p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

#newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #0f3460;
    border-radius: 5px;
    width: 300px;
    background-color: #0f3460;
    color: white;
}

#newsletter input[type="email"]::placeholder {
    color: #a0a0a0;
}

/* Footer */
footer {
    background-color: #16213e;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #0f3460;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
}

/* Lounges Page */
#lounges-list {
    padding: 40px 0;
    background-color: #1a1a2e;
}

#lounges-list h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.lounge-card {
    background-color: #0f3460;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.lounge-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.lounge-card-content h4 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #e94560;
}

.lounge-card-content p {
    margin-bottom: 5px;
}

/* About Page */
#about-content {
    padding: 40px 0;
    background-color: #1a1a2e;
}

#about-content h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

#about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Page */
#contact-form-section {
    padding: 40px 0;
    background-color: #1a1a2e;
}

#contact-form-section h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.contact-form-container {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #16213e;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: white;
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-container button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

/* Policy Pages */
.policy-content {
    padding: 40px 0;
    background-color: #1a1a2e;
}

.policy-content h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.policy-content h3 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e94560;
}

.policy-content p,
.policy-content ul {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.policy-content ul li {
    margin-bottom: 5px;
}

/* Clearfix */
.container::after {
    content: "";
    display: table;
    clear: both;
}
