@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --resort-primary: #008080; /* Tropical Teal */
    --resort-secondary: #FF7F50; /* Coral */
    --resort-accent: #FFD700; /* Golden Sand */
    --resort-bg: #f9fdfd;
    --resort-text: #2d3436;
    --resort-muted: #636e72;
    --resort-white: #ffffff;
    --resort-shadow: 0 10px 30px rgba(0, 128, 128, 0.1);
}

.resort-booking-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 60px;
    background: var(--resort-white);
    font-family: 'Poppins', sans-serif;
    color: var(--resort-text);
    box-shadow: var(--resort-shadow);
    border-radius: 15px;
    border-top: 5px solid var(--resort-primary);
}

.resort-booking-container h2,
.resort-booking-container h3,
.resort-booking-container h4 {
    font-family: 'Playfair Display', serif;
    color: var(--resort-primary);
}

.resort-step-indicator {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 2px solid #e0f2f2;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.resort-step-indicator .step {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b2bec3;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resort-step-indicator .step.active {
    color: var(--resort-secondary);
}

.resort-step-indicator .step.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--resort-secondary);
}

.resort-intro {
    text-align: center;
    margin-bottom: 40px;
}

.resort-search-form {
    display: flex;
    gap: 20px;
    background: #f0fafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #d1eaea;
    align-items: flex-end;
    flex-wrap: wrap;
}

.resort-field {
    margin-bottom: 25px;
}

.resort-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    color: var(--resort-primary);
    font-weight: 700;
}

.resort-field input, .resort-field select, .resort-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1eaea;
    border-radius: 8px;
    font-size: 14px;
    background: var(--resort-white);
    transition: all 0.3s ease;
}

.resort-field input:focus {
    border-color: var(--resort-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.1);
}

.resort-btn {
    padding: 18px 45px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 30px 0;
}

.resort-btn:hover {
    background: var(--resort-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.resort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.resort-room-card {
    background: var(--resort-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.resort-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.15);
}

.resort-room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.room-price {
    color: var(--resort-secondary);
    font-weight: 700;
    font-size: 20px;
}

.booking-summary {
    background: #f0fafa;
    border: 2px dashed #d1eaea;
    padding: 25px;
    border-radius: 12px;
}

.payment-methods label {
    border: 2px solid #d1eaea;
    border-radius: 10px;
    padding: 20px;
}

.payment-methods label:hover {
    background: #f0fafa;
}

.payment-methods input:checked + span {
    color: var(--resort-primary);
}

.status-badge {
    border-radius: 20px;
    padding: 5px 12px;
}

/* Tropical Modal */
.resort-modal {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Animations */
.resort-step {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Dashboard Specific */
.resort-btn-small {
    padding: 8px 15px;
    background: var(--resort-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.resort-btn-small:hover {
    background: var(--resort-secondary);
}

.resort-badge-recommended {
    background: var(--resort-secondary);
    color: #fff;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: 15px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
}

.housekeeping-status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .resort-booking-container {
        padding: 20px;
    }
    .resort-search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .resort-grid {
        grid-template-columns: 1fr;
    }
    .resort-step-indicator {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}
