* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #4c4c4c; }
a { color: #fe0236; text-decoration: none; }
a:hover { color: #d4012d; }
img { max-width: 100%; height: auto; }

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

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 65px; }
.nav-logo { font-size: 1.3rem; font-weight: bold; color: #fe0236; }
.nav-menu { display: flex; list-style: none; gap: 5px; }
.nav-menu a { display: block; padding: 20px 15px; color: #4c4c4c; font-size: 0.95rem; border-bottom: 3px solid transparent; }
.nav-menu a:hover { color: #fe0236; border-bottom-color: #fe0236; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 25px; height: 3px; background: #4c4c4c; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, #fe0236, #b30128); color: #fff; padding: 100px 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.5rem; opacity: 0.9; }
.hero p { margin-bottom: 1.5rem; opacity: 0.85; }
.btn { display: inline-block; padding: 12px 30px; background: #fff; color: #fe0236; font-weight: bold; border-radius: 4px; border: none; cursor: pointer; transition: 0.3s; }
.btn:hover { background: #f5f5f5; transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 70px 0; }
.bg-gray { background: #f5f5f5; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); color: #fe0236; text-align: center; margin-bottom: 10px; }
.section-title::after { content: ''; display: block; width: 50px; height: 3px; background: #fe0236; margin: 12px auto 0; }
.section-intro { text-align: center; max-width: 600px; margin: 15px auto 35px; }

/* ABOUT */
.about-text { text-align: center; max-width: 700px; margin: 0 auto 30px; }
.about-text p { margin-bottom: 1rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.feature { background: #fff; padding: 25px; border-radius: 8px; text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.feature-icon { width: 55px; height: 55px; background: #fe0236; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.feature-icon i { color: #fff; font-size: 1.3rem; }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: #666; }

/* Subsection titles */
.subsection-title { font-size: 1.2rem; color: #4c4c4c; text-align: center; margin: 40px 0 25px; }
.history-intro { text-align: center; max-width: 700px; margin: 0 auto 35px; }
.history-intro h3 { color: #fe0236; margin-bottom: 10px; }
.form-intro { color: #666; margin-bottom: 20px; font-size: 0.95rem; }

/* ROOMS */
.rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 35px; }
.room-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.1); }
.room-image { height: 220px; overflow: hidden; background: #eee; }
.room-image img { width: 100%; height: 100%; object-fit: cover; }
.room-content { padding: 20px; }
.room-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.room-content p { font-size: 0.9rem; color: #666; margin-bottom: 12px; }
.room-content ul { list-style: none; }
.room-content li { padding: 4px 0; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.room-content li i { color: #fe0236; font-size: 0.8rem; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }
.service { display: flex; align-items: center; gap: 12px; padding: 15px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.service i { font-size: 1.3rem; color: #fe0236; }
.service strong { display: block; }
.service span { font-size: 0.9rem; }

/* PRICES */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 550px; margin: 0 auto 30px; }
.price-card { background: #fff; padding: 30px 25px; border-radius: 8px; text-align: center; border: 2px solid #eee; }
.price-card.highlighted { border-color: #fe0236; }
.price-card h3 { margin-bottom: 10px; }
.price { font-size: 2rem; font-weight: bold; color: #fe0236; margin-bottom: 5px; }
.price-card p { color: #666; font-size: 0.9rem; }
.extras { max-width: 400px; margin: 0 auto 25px; background: #fff; padding: 20px; border-radius: 8px; }
.extras h3 { text-align: center; margin-bottom: 12px; font-size: 1rem; }
.extra-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #ccc; }
.extra-item:last-child { border-bottom: none; }
.extra-item span:last-child { font-weight: bold; color: #fe0236; }
.notice { max-width: 500px; margin: 0 auto; padding: 12px 15px; background: #fff8e5; border-left: 4px solid #f0ad4e; border-radius: 4px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }

/* HISTORY */
.timeline { max-width: 600px; margin: 0 auto 40px; position: relative; padding-left: 25px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 5px; bottom: 5px; width: 3px; background: #fe0236; }
.timeline-item { position: relative; padding: 0 0 20px 25px; }
.timeline-item::before { content: ''; position: absolute; left: -22px; top: 5px; width: 12px; height: 12px; background: #fe0236; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px #fe0236; }
.year { display: inline-block; background: #fe0236; color: #fff; padding: 2px 10px; border-radius: 3px; font-size: 0.8rem; font-weight: bold; margin-bottom: 5px; }
.timeline-item h3 { font-size: 1rem; margin-bottom: 3px; }
.timeline-item p { font-size: 0.9rem; color: #666; }
.history-box { max-width: 600px; margin: 0 auto; padding: 25px; background: #fafaf8; border-left: 4px solid #fe0236; border-radius: 4px; }
.history-box h3 { color: #fe0236; margin-bottom: 10px; }
.history-box p { color: #555; }
.history-box cite { display: block; margin-top: 10px; font-size: 0.85rem; color: #888; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3, .contact-form h3 { font-size: 1.15rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-item i { font-size: 1.1rem; color: #fe0236; margin-top: 3px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item p { margin: 0; color: #666; font-size: 0.95rem; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #fe0236; }
.contact-form .btn { width: 100%; background: #fe0236; color: #fff; }
.contact-form .btn:hover { background: #d4012d; }

/* FOOTER */
.footer { background: #4c4c4c; color: #fff; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h4 { color: #fe0236; margin-bottom: 12px; font-size: 1rem; }
.footer p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.footer ul a:hover { color: #fe0236; }
.footer i { color: #fe0236; margin-right: 6px; }
.footer-bottom { padding: 15px 0; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 65px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 15px; display: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 10px 0; }
    .nav-toggle { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
}
