 /* Reset CSS */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #b93030;
}

/* Main Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 40px 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.rooms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.room-types {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.room-card {
    flex: 1;
    padding: 25px;
    border-radius: 5px;
}

.standard-room {
    background-color: #b93030;
    color: white;
}

.family-suite {
    background-color: #882222;
    color: white;
}

.mountain-suite {
    background-color: #661818;
    color: white;
}

.room-card h3 {
    margin-bottom: 15px;
}

.room-card p {
    margin-bottom: 10px;
}

.amenities {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.amenity-card {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.amenity-card h3 {
    margin-bottom: 15px;
}

.local-attractions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.attractions-image {
    flex: 1;
}

.attractions-content {
    flex: 1;
}

.attractions-list {
    margin-top: 20px;
}

.attractions-list li {
    margin-bottom: 15px;
    list-style-type: none;
}

.attractions-list li::before {
    content: "•";
    color: #b93030;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cta {
    color: #b93030;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

.why-choose {
    margin-top: 40px;
}

.reasons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.reason {
    flex: 1;
    padding: 20px;
}

.reason h3 {
    margin: 10px 0;
}

/* Contact Form */
.contact {
    background-color: #b93030;
    color: white;
    padding: 50px 0;
}

.contact h2 {
    color: white;
    text-align: left;
    margin-bottom: 15px;
}

.contact p {
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, textarea {
    padding: 10px;
    border: none;
    width: 100%;
}

textarea {
    grid-column: span 2;
    resize: none;
    height: 120px;
}

button {
    background-color: white;
    color: #b93030;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    grid-column: 2;
    justify-self: end;
    display: flex;
    align-items: center;
}

button svg {
    margin-left: 10px;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #b93030;
    color: white;
    padding: 20px;
    max-width: 400px;
    z-index: 1000;
    display: none;
}

.cookie-consent p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-button {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero, .room-types, .amenities, .local-attractions, .reasons {
        flex-direction: column;
    }

    .hero-image, .attractions-image {
        order: -1;
        margin-bottom: 20px;
    }

    form {
        grid-template-columns: 1fr;
    }

    textarea {
        grid-column: 1;
    }

    button {
        grid-column: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
}