/* Embassy Suites - Upscale All-Suite Hotel Styling */

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

body {
    font-family: 'Georgia', serif; line-height: 1.6; color: #2c3e50;
    background: linear-gradient(135deg, #2E4057 0%, #048A81 50%, #54C6EB 100%);
}

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

.header {
    background: linear-gradient(135deg, #2E4057 0%, #048A81 100%);
    position: fixed; top: 0; width: 100%; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.brand-text { color: white; font-size: 1.5rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: white; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.nav-menu a:hover { color: #54C6EB; }

.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, #2E4057 0%, #048A81 100%); color: white;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 3px 3px 6px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.8rem; color: #54C6EB; margin-bottom: 1rem; }
.hero-description { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; }

.btn {
    padding: 15px 30px; border: none; border-radius: 50px; font-size: 1rem;
    font-weight: bold; cursor: pointer; transition: all 0.3s ease; margin: 0.5rem;
}

.btn-primary { background: linear-gradient(45deg, #54C6EB, #048A81); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(84, 198, 235, 0.4); }
.btn-secondary { background: transparent; color: white; border: 3px solid white; }
.btn-secondary:hover { background: white; color: #2E4057; }

.accommodations, .amenities, .contact { padding: 80px 0; }
.accommodations { background: white; }
.accommodations h2, .amenities h2, .contact h2 {
    text-align: center; font-size: 2.5rem; color: #2E4057; margin-bottom: 3rem;
}

.room-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 3rem; }
.room-card {
    background: white; border-radius: 15px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.room-card:hover { transform: translateY(-10px); }
.room-card img { width: 100%; height: 250px; object-fit: cover; }
.room-info { padding: 2rem; }
.room-info h3 { color: #2E4057; font-size: 1.5rem; margin-bottom: 1rem; }
.room-price { font-size: 1.2rem; font-weight: bold; color: #54C6EB; text-align: right; margin-top: 1rem; }

.amenities { background: #F0F8FF; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.amenity-card {
    background: white; padding: 2rem; border-radius: 15px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.amenity-card:hover { transform: translateY(-5px); }
.amenity-card h3 { color: #2E4057; margin-bottom: 1rem; }

.contact { background: white; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.booking-form {
    background: linear-gradient(135deg, #2E4057 0%, #048A81 100%);
    padding: 2rem; border-radius: 15px; color: white;
}
.booking-form input, .booking-form select {
    width: 100%; padding: 12px; margin-bottom: 1rem; border: none;
    border-radius: 8px; font-size: 1rem;
}

.footer { background: #2E4057; color: white; text-align: center; padding: 2rem 0; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .room-types { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
}
EOF < /dev/null