* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    background-color: rgb(200, 145, 99);
}

.welcome-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
}

.body-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75);
    padding-top: 85px;
    background-color: rgba(0 , 0, 0, .55);
}

.logo {
    height: 400px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

h1 {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    letter-spacing: 0.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem; 
    font-style: italic;
    text-align: center;
    opacity: 0.9;
    color: #ffffff;
}

.welcome-container .subtitle{
    background-color: rgba(40,40,40,.7);
    border-radius: 50px;
    padding: 5px 15px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
    .logo {
        width: 250px;
        height: 250px;
    }
}

/* Form classes */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.4);
}

.form-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #13D4D4 0%, #069494 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 223, 42, 0.4);
    margin-top: 1rem;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.form-button:active {
    transform: translateY(0);
}

.messages {
    margin-top: 2rem;
    width: 100%;
}

.message {
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.message.success {
    background: rgba(39, 174, 96, 0.9);
}

.message.error {
    background: rgba(231, 76, 60, 0.9);
}

.message.warning {
    background: rgba(255, 165, 2, 0.9);
}

/* Contact info */

.contact-us-button {
    
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
    margin: 20px;
}

/* Room Cards */

.room-deck{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 20px;
    justify-items: center;
    text-shadow: none;
}

.room-card{
    color: white;
    display: inline-block;
    min-width: 360px;
    max-width: 700px;
}

@media (max-width: 768px) {
    .room-card{
        width: 100px;
    }
    .room-deck{
        padding: 0px;
    }
}
