﻿body {
    margin: 100;
    font-family: 'Open Sans', sans-serif;
    background: #f5f6f7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    h2, p {
    text-align: center;
}
}
header {
    background: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 200px auto;
}

.gallery {
    width: 100%;
    max-width: 900px;   /* controls overall size */
    height: 400px;      /* fixed height for clean look */
    margin: 0 auto 20px auto;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* ✅ THIS FIXES IMAGE SIZE */
    display: none;
}

.gallery img.active {
    display: block;
}

.card {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
}
.section {
    text-align: center;
    padding: 40px 20px;     /* spacing for mobile */
}

.section p {
    max-width: 700px;       /* prevents super wide text */
    margin: 0 auto;         /* centers horizontally */
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .section {
        padding: 30px 15px;
    }

    .section p {
        max-width: 100%;
        font-size: 1rem;
    }
}
button {
    background: #2c3e50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

input, textarea {
    width: 75%;
    padding: 10px;
    margin-top: 10px;
}

iframe {
    width: 65%;
    height: 300px;
    border: none;
}
.hero {
    height: 420px;
    background: url("images/sign.jpg") center/cover no-repeat;
    position: relative;
    margin-bottom: 30px;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-buttons button {
    margin: 10px;
}

button.outline {
    background: transparent;
    border: 2px solid white;
}
.room-image {
    display: block;        /* required for centering */
    margin: 20px auto;     /* centers horizontally */
    width: 100%;
    max-width: 700px;
    height: auto;
}