/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: url('cruiseslux.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Add a semi-transparent overlay for better text readability */
.container {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-top: 20px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #fff;
}
.logo img {
  width: 300px;
  height: auto;
  max-width: 300px;
}
/* Main Content */
.main-content {
    margin-top: 50px;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff; /* Highlighted text color */
}

.main-content p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #f0f0f0;
}

.subscribe-form {
    margin-top: 30px;
}

.subscribe-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    width: 60%;
    max-width: 400px;
}

.subscribe-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    background-color: #00b4d8;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0096c7;
}

/* Footer */
.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.8;
}
