﻿/* ================= DAY OUTING (WHITE THEME) ================= */

/* ---------- HERO ---------- */
.dayout-hero {
    min-height: 520px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://sunrisedreamworldresort.com/Content/Resort/1.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.dayout-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

    .dayout-hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .dayout-hero-content p {
        font-size: 1.15rem;
        max-width: 600px;
        color: #fff;
        line-height: 1.8;
    }

/* ---------- INTRO ---------- */
.dayout-intro {
    padding: 70px 0 40px;
    text-align: center;
}

    .dayout-intro h4 {
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #54999d;
        margin-bottom: 6px;
    }

    .dayout-intro h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 10px;
    }

    .dayout-intro p {
        font-size: 1.05rem;
        color: #6b7280;
        max-width: 700px;
        margin: auto;
        line-height: 1.7;
    }

/* ---------- BOOKING SECTION ---------- */
.dayout-booking {
    padding: 60px 0 90px;
    background: #f9fafb;
}

.dayout-booking-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* titles */
.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
}

/* labels */
.dayout-booking-card label {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 6px;
}

/* inputs */
.dark-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
    border-radius: 10px;
    padding: 12px 14px;
}

    .dark-input::placeholder {
        color: #9ca3af;
    }

    .dark-input:focus {
        border-color: #54999d;
        box-shadow: 0 0 0 1px rgba(84,153,157,.35);
    }

/* counter */
.dark-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 12px;
}

    .dark-counter span {
        color: #54999d;
        font-size: 22px;
        cursor: pointer;
        width: 30px;
        text-align: center;
    }

    .dark-counter input {
        background: transparent;
        border: none;
        color: #111827;
        width: 40px;
        text-align: center;
    }

/* submit */
.dark-submit-btn {
    background: #54999d;
    border: none;
    padding: 14px 42px;
    font-size: 15px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    transition: all .3s ease;
}

    .dark-submit-btn:hover {
        background: #417f83;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(84,153,157,.4);
    }

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

    .dayout-hero {
        min-height: 420px;
    }

    .dayout-hero-content h1 {
        font-size: 2.1rem;
    }

    .dayout-intro h2 {
        font-size: 1.8rem;
    }

    .dayout-booking-card {
        padding: 28px 22px;
    }
}
