* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
body { background-color: #FAFAFA; color: #333; line-height: 1.6; }
.kilauea-pulse { background-color: #B22222; color: white; text-align: center; padding: 10px; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.kilauea-pulse span { margin: 0 10px; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: #1A1A1A; color: white; }
.logo { font-weight: bold; font-size: 1.2rem; letter-spacing: 2px; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-size: 0.9rem; text-transform: uppercase; }
.btn, .btn-small, .btn-outline { display: inline-block; text-decoration: none; text-transform: uppercase; font-weight: bold; transition: 0.3s; }
.btn { background: #E65100; color: white; padding: 15px 30px; border-radius: 3px; margin-top: 20px; }
.btn:hover { background: #BF360C; }
.btn-small { background: #E65100; padding: 8px 15px; border-radius: 3px; }
.btn-outline { border: 2px solid #1A1A1A; color: #1A1A1A; padding: 10px 20px; margin-top: 15px; }
.btn-outline:hover { background: #1A1A1A; color: white; }
.hero { height: 80vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-content { max-width: 800px; padding: 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.section { padding: 80px 5%; max-width: 1200px; margin: auto; }
.section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 1px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 20px; border-radius: 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: center; }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 3px; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.card p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.dark-bg { background-color: #1A1A1A; color: white; }
.dark-bg h2 { color: white; }
.wellness-grid { display: flex; flex-wrap: wrap; align-items: center; }
.wellness-text { flex: 1; min-width: 300px; padding-right: 40px; }
.wellness-image { flex: 1; min-width: 300px; }
.wellness-image img { width: 100%; border-radius: 3px; }
footer { background: #0D0D0D; color: white; padding: 50px 5%; }
.footer-content { display: flex; justify-content: space-between; max-width: 1200px; margin: auto; flex-wrap: wrap; }
.footer-col { margin-bottom: 20px; }
.footer-col h4 { margin-bottom: 15px; color: #E65100; }
.social a { color: #AAA; text-decoration: none; display: block; margin-bottom: 8px; }
.social a:hover { color: white; }
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .kilauea-pulse { font-size: 0.7rem; }
    .kilauea-pulse span { display: block; margin: 5px 0; }
}

.room-features { list-style: none; padding: 0; margin: 0 0 20px 0; text-align: left; display: inline-block; }
.room-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #555; margin-bottom: 8px; }
.room-features li svg { color: #E65100; }

.interior-hero { height: 40vh; background-color: #1A1A1A; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 60px; }
.interior-hero h1 { font-size: 3rem; letter-spacing: -1px; }

.funnel-section { padding: 60px 5%; max-width: 900px; margin: auto; }
.funnel-section h2 { color: #E65100; margin-bottom: 20px; font-size: 2rem; }
.funnel-section h3 { margin-top: 30px; margin-bottom: 10px; font-size: 1.4rem; }
.funnel-section p { font-size: 1.1rem; margin-bottom: 20px; }
.price-box { background: #FAFAFA; border-left: 4px solid #E65100; padding: 20px; margin: 30px 0; font-weight: bold; }

/* --- MAGMA MODAL STYLES --- */
.magma-modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); z-index: 9999;
    align-items: center; justify-content: center; backdrop-filter: blur(4px);
    opacity: 0; transition: opacity 0.3s ease;
}
.magma-modal-overlay.active { display: flex; opacity: 1; }
.magma-modal {
    background: #18181b; max-width: 600px; width: 90%; padding: 2.5rem;
    border-radius: 8px; border: 2px solid #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4), inset 0 0 10px rgba(255, 69, 0, 0.2);
    animation: magma-pulse 2s infinite alternate; position: relative;
    font-family: 'Montserrat', sans-serif;
}
@keyframes magma-pulse {
    0% { box-shadow: 0 0 15px rgba(255, 69, 0, 0.3), inset 0 0 8px rgba(255, 69, 0, 0.1); }
    100% { box-shadow: 0 0 30px rgba(255, 69, 0, 0.6), inset 0 0 15px rgba(255, 69, 0, 0.3); }
}
.magma-modal h2 { font-family: 'Georgia', serif; color: #fff; text-align: center; margin-bottom: 0.5rem; }
.magma-modal .subtitle { color: #ccc; text-align: center; margin-bottom: 2rem; font-size: 0.9rem; }
.magma-modal h3 { color: #fff; margin-bottom: 1rem; border-bottom: 1px solid #333; padding-bottom: 0.5rem; font-size: 1.2rem; }
.magma-list { list-style: none; padding: 0; margin-bottom: 2.5rem; }
.magma-list li { margin-bottom: 1.2rem; line-height: 1.6; display: flex; align-items: flex-start; gap: 12px; color: #ddd; }
.magma-list li svg { color: #10b981; flex-shrink: 0; margin-top: 2px; }
.magma-close { position: absolute; top: 15px; right: 20px; color: #888; cursor: pointer; font-size: 1.8rem; transition: color 0.2s; line-height: 1; }
.magma-close:hover { color: #ff4500; }
.magma-btn { display: block; width: 100%; background: #ff4500; color: #fff; text-align: center; padding: 16px; font-weight: bold; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; font-size: 1.1rem; transition: background 0.3s; letter-spacing: 0.05em; }
.magma-btn:hover { background: #e03e00; }
