/* --- BASE RESET --- */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body { background: #fff; color: #333; overflow-x: hidden; }

/* --- CENTERING & SYSTEM --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.narrow-container { max-width: 800px; }

/* --- TOP BAR --- */
#top-bar {
    background: #4c0519; color: white;
    text-align: center; padding: 10px;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.98);
    position: sticky; top: 0; z-index: 2000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.header-container { display: flex; justify-content: space-between; align-items: center; }

.brand { font-size: 26px; font-weight: 700; color: #4c0519; letter-spacing: 1px; }
.tagline { font-size: 10px; letter-spacing: 3px; color: #fb7185; text-transform: uppercase; }

nav a {
    margin-left: 25px; text-decoration: none;
    font-size: 12px; text-transform: uppercase;
    color: #333; font-weight: 600; transition: color 0.3s;
}

nav a:hover { color: #e11d48; }

.book-btn {
    background: #e11d48; color: white !important;
    padding: 12px 24px; border-radius: 50px;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

/* --- UNIVERSAL PARALLAX EFFECT (WORKS ON MOBILE) --- */
.parallax-section {
    position: relative;
    height: 75vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Works on PC and some Tablets */
}

/* Specifically for Mobile Devices where fixed can be laggy */
@supports (-webkit-overflow-scrolling: touch) {
    .parallax-section { background-attachment: scroll; }
}

.hero-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
    url('bander.png');
}

.middle-parallax {
    height: 50vh;
    background-image: url('logo.png');
}

/* --- CONTENT SECTIONS --- */
.content-section { padding: 120px 0; text-align: center; }
.grey-bg { background: #fdfafb; }
.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 42px; color: #4c0519; 
    margin-bottom: 60px; position: relative;
}

.section-title::after {
    content: ''; width: 50px; height: 3px; 
    background: #fb7185; position: absolute; 
    bottom: -15px; left: 50%; transform: translateX(-50%);
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-box {
    background: white; padding: 40px; 
    border-radius: 20px; transition: 0.5s;
}

.icon-wrap {
    width: 90px; height: 90px; border: 1px solid #fce7f3;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 25px;
    transition: 0.5s; background: #fff5f7;
}

.icon-wrap i { font-size: 32px; color: #e11d48; }

.service-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.service-box:hover .icon-wrap { background: #e11d48; }
.service-box:hover .icon-wrap i { color: #fff; }

/* --- GALLERY --- */
.gallery-container {
    position: relative; width: 100%; height: 600px;
    overflow: hidden; border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.gallery-slide {
    position: absolute; width: 100%; height: 100%;
    opacity: 0; transition: opacity 2s ease-in-out;
}

.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

/* --- BOOKING CARD --- */
.booking-card {
    background: white; padding: 60px;
    border-radius: 30px; box-shadow: 0 25px 70px rgba(0,0,0,0.06);
}

.price-display { margin-bottom: 25px; font-weight: 600; color: #e11d48; font-size: 20px; }

input, select {
    width: 100%; padding: 18px; margin-bottom: 20px;
    border: 1px solid #f1f1f1; border-radius: 12px; 
    outline: none; background: #fcfcfc; font-size: 15px;
}

.form-row { display: flex; gap: 20px; }

.submit-button {
    width: 100%; padding: 20px; background: #4c0519;
    color: white; border: none; border-radius: 12px;
    font-weight: 700; cursor: pointer; transition: 0.3s;
    letter-spacing: 1px; text-transform: uppercase;
}

.submit-button:hover { background: #e11d48; transform: scale(1.02); }

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 991px) {
    .section-title { font-size: 32px; }
    .gallery-container { height: 450px; }
    .container { padding: 0 20px; }
}

@media (max-width: 768px) {
    /* Mobile-Specific Parallax fix for buttery smoothness */
    .parallax-section { height: 50vh; background-attachment: scroll; }
    .header-container { flex-direction: column; gap: 15px; text-align: center; }
    nav a { margin: 0 10px; font-size: 10px; }
    .content-section { padding: 70px 0; }
    .form-row { flex-direction: column; gap: 0; }
    .booking-card { padding: 30px; }
}