/* ===========================
   ROOT & BASE
=========================== */
:root {
    --pink: #e91e8c;
    --cyan: #00d4ff;
    --gold: #d4af37;
    --dark: #0d0d1a;
    --dark2: #0a0a14;
    --dark3: #1a1a2e;
    --text-light: #ccc;
    --font-main: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 40%, #0a1628 70%, #0d0d1a 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.pink  { color: var(--pink) !important; }
.gold  { color: var(--gold) !important; }
.cyan  { color: var(--cyan) !important; }
.script { font-family: var(--font-script); }

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* ===========================
   NAVBAR
=========================== */
#mainNav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(233, 30, 140, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#mainNav {
    background: transparent;
    padding: 16px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#mainNav .nav-link {
    color: #ddd !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 16px !important;
    transition: color 0.3s;
}

#mainNav .nav-link:hover {
    color: var(--pink) !important;
}

.btn-book {
    background: linear-gradient(135deg, #e91e8c, #9b27af);
    color: #fff;
    border-radius: 25px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.35);
}

.btn-book:hover {
    background: linear-gradient(135deg, #c4177a, #7b1fa2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.5);
}

/* ===========================
   HERO
=========================== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/home-banner.jpg') center center / cover no-repeat;
    background-color: var(--dark3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.96) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 60px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    border: 3px solid #fff;
    box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(233,30,140,0.5);
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--cyan);
    font-weight: 400;
    text-shadow: 0 0 20px rgba(0,212,255,0.4);
}

.hero-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 520px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.btn-pink {
    background: linear-gradient(135deg, #e91e8c, #9b27af);
    color: #fff;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.35);
}

.btn-pink:hover {
    background: linear-gradient(135deg, #c4177a, #7b1fa2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.55);
}

.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===========================
   MISSION
=========================== */
.mission-section {
    background: rgba(255,255,255,0.03);
    padding: 90px 20px;
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(155,39,175,0.2));
    border: 1px solid rgba(233,30,140,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--pink);
}

.mission-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.mission-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--pink), #9b27af);
    border-radius: 2px;
    margin: 0 auto 28px;
}

.mission-text {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===========================
   SERVICES
=========================== */
.services-section {
    background: rgba(0,0,0,0.25);
    padding: 80px 20px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--pink);
    background: rgba(233,30,140,0.07);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233,30,140,0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(233,30,140,0.25), rgba(155,39,175,0.25));
    border: 1px solid rgba(233,30,140,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--pink);
}

.service-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.services-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   GALLERY
=========================== */
.gallery-section {
    background: rgba(255,255,255,0.03);
    padding: 80px 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #1a1a2e;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 20px 12px 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===========================
   CONTACT
=========================== */
.contact-section {
    background: rgba(0,0,0,0.2);
    padding: 80px 20px;
}

.contact-box {
    border: 1.5px solid var(--pink);
    border-radius: 20px;
    padding: 50px 40px;
    background: rgba(233,30,140,0.04);
    box-shadow: 0 0 40px rgba(233,30,140,0.1);
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.contact-title .script {
    font-size: 2.8rem;
    display: block;
}

.contact-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(233,30,140,0.15);
    color: #fff;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: rgba(0,0,0,0.4);
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    margin: 0;
}

/* ===========================
   FORM ENHANCEMENTS
=========================== */

/* Select dropdown styled to match inputs */
.contact-form .form-select {
    background-color: rgba(255,255,255,0.06);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e91e8c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-select option {
    background: #1a0a2e;
    color: #fff;
}

.contact-form .form-select:focus {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(233,30,140,0.15);
    color: #fff;
    outline: none;
}

.contact-form .form-select.selected-value {
    color: #fff;
}

/* Date input */
.contact-form input[type="date"] {
    color-scheme: dark;
}

.contact-form input[type="date"]:not([value=""]):valid {
    color: #fff;
}

/* Character counter */
.char-counter {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: color 0.2s;
}

/* Validation states */
.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #28a745;
    box-shadow: none;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.contact-form .invalid-feedback {
    color: #ff6b8a;
    font-size: 0.78rem;
    margin-top: 4px;
}

/* Submit button loading state */
#submitBtn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}
