/* == Elephanta Water Park Professional UI Kit == */

:root {
    --wp-primary: #bd0f0f;
    --wp-secondary: #007bff;
    --wp-accent: #00c6ff;
    --wp-dark: #1a171b;
    --wp-light: #f8f9fa;
    --wp-glass: rgba(255, 255, 255, 0.9);
}

/* -- Typography -- */
.wp-title-large {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--wp-dark);
}

.wp-subtitle {
    font-family: 'Sarabun', sans-serif;
    color: var(--wp-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* -- Hero & Parallax -- */
.wp-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.wp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1); /* for parallax effect */
    transition: transform 0.5s ease-out;
}

.wp-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.wp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

/* -- Glassmorphism Cards -- */
.wp-glass-card {
    background: var(--wp-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wp-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* -- Ride Specifications -- */
.wp-spec-box {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--wp-primary);
}

.wp-spec-icon {
    font-size: 2rem;
    color: var(--wp-primary);
    margin-right: 15px;
}

/* -- Thrill Meter -- */
.thrill-meter {
    display: flex;
    gap: 5px;
}

.thrill-star {
    color: #e4e4e4;
    font-size: 1.2rem;
}

.thrill-star.active {
    color: #ffc107;
}

/* -- Section Dividers -- */
.wp-wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    background: #fff;
    overflow: hidden;
}

.wp-wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
}

/* -- Review Section -- */
.wp-review-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    background: #fff;
}

.wp-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* -- FAQ -- */
.wp-faq-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}

.wp-faq-button {
    background: #fff;
    font-weight: 700;
    color: var(--wp-dark);
    text-align: left;
    padding: 20px;
}

.wp-faq-button:not(.collapsed) {
    background: var(--wp-primary);
    color: #fff;
}
