:root {
--gold: #FFD700;
--red-dark: #8B0000;
--red-bright: #D40000;
--light: #FFF5F5;
}

/* --- Angpao Animation --- */
.angpao {
position: fixed;
top: -50px;
font-size: 24px;
z-index: 9999;
user-select: none;
pointer-events: none;
animation: fall linear forwards;
}
@keyframes fall { to { transform: translateY(105vh) rotate(360deg); } }

/* --- Lantern Decorations --- */
.lantern-box { position: fixed; top: 0; z-index: 1001; pointer-events: none; }
.lantern-left { left: 20px; }
.lantern-right { right: 20px; }
.lantern-emoji {
font-size: 45px;
animation: swing 3s ease-in-out infinite;
transform-origin: top center;
display: inline-block;
}
@keyframes swing { 0%, 100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }

body {
font-family: 'Montserrat', sans-serif;
margin: 0;
background-color: white;
color: #333;
scroll-behavior: smooth;
overflow-x: hidden;
}

nav {
position: sticky;
top: 0;
width: 100%;
background: rgba(139, 0, 0, 0.95);
display: flex;
justify-content: center;
gap: 30px;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
z-index: 1000;
}
nav a { color: white; text-decoration: none; font-weight: 500; letter-spacing: 1px; transition: 0.3s; }
nav a:hover { color: var(--gold); }

header {
height: 90vh;
background: linear-gradient(rgba(139, 0, 0, 0.6), rgba(212, 0, 0, 0.4)), url('https://i.postimg.cc/gcCc0S2y/image.png') center/cover no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
}

h1 { 
font-family: 'Cormorant Garamond', serif; 
font-size: 4rem; 
margin: 0; 
letter-spacing: 5px; 
color: white;
}
.hero-sub { font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; color: #fff; }

.section { padding: 80px 10%; text-align: center; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 40px; color: var(--red-dark);}
h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; border-bottom: 2px solid var(--gold); padding-bottom: 10px; color: var(--red-dark); margin-top: 0;}

.price-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: left; }
.service-group {
background: #fffcfc;
padding: 25px;
border-radius: 10px;
border: 1px solid #ffecec;
border-left: 5px solid var(--gold);
box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.service-group ul { list-style: none; padding: 0; margin: 0; }
.service-group li { padding: 8px 0; border-bottom: 0.5px solid #eee; font-size: 0.95rem; }

.btn-reserve {
display: inline-block;
margin-top: 30px;
padding: 15px 40px;
background: var(--gold);
color: var(--red-dark);
text-decoration: none;
font-weight: bold;
letter-spacing: 2px;
border-radius: 50px;
transition: 0.4s;
}
.btn-reserve:hover { background: white; color: var(--red-bright); transform: scale(1.05); }

.premium-gallery img { width: 300px; height: 300px; object-fit: cover; border-radius: 10px; transition: 0.3s; border: 3px solid #eee; margin: 10px; }
.premium-gallery img:hover { transform: scale(1.05); border-color: var(--gold); }

.contact-container {
max-width: 900px;
margin: auto;
padding: 40px 20px;
text-align: center;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin: 40px 0;
}

.contact-item h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
color: var(--red-dark);
margin-bottom: 10px;
}

.contact-item p {
font-size: 1rem;
line-height: 1.6;
color: #333; /* pastikan terlihat */
}

.contact-item.full-width { grid-column: 1 / -1; }

.contact-item a {
color: var(--red-bright);
text-decoration: none;
font-weight: bold;
}
.contact-item a:hover { text-decoration: underline; }

.hours {
font-size: 0.9rem;
color: var(--red-bright);
margin-bottom: 20px;
}

.gold-line { width: 50px; height: 2px; background: var(--gold); margin: 20px auto; }

footer { padding:50px; text-align:center; background: var(--red-dark); color:white; border-top: 5px solid var(--gold); }

@media(max-width:768px){
h1{font-size:2.5rem;}
.price-container{grid-template-columns:1fr;}
.lantern-emoji { font-size: 30px; }
.premium-gallery img { width: 100%; height: auto; }
.contact-grid { grid-template-columns: 1fr; gap: 20px; }
}