/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 65vh;
    background: url('./images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
}

.sub-header {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: #c4a457;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
}

.tagline {
    font-size: clamp(1rem, 4vw, 1.4rem);
    opacity: 0.9;
}

/* INTRO SECTION */
.intro {
    max-width: 800px;
    margin: 80px auto 40px;
    text-align: center;
    padding: 0 24px;
}

.intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

/* MAIN CARD */
.signup {
    max-width: 700px;
    margin: 0 auto 100px;
    background: #f7f6f2; 
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.card-section {
    margin-bottom: 40px;
    text-align: left;
}

.card-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

/* Lists & Tables */
.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.amenities-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a457;
    font-weight: bold;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    padding: 12px 0;
    font-size: 1.1rem;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.discount-row td {
    color: #c4a457;
    font-style: italic;
}

.total-row td {
    font-size: 1.4rem;
    color: #2d3748;
    padding-top: 20px;
    border-top: 2px solid #cbd5e0;
}

.disclaimer {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 15px;
}

/* Extras Grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.extra-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.extra-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #718096;
}

.extra-item strong {
    font-size: 1.2rem;
    color: #2d3748;
}

/* Form Styles */
.divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 40px 0;
}

.form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    background: #2d3748;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: #1a202c;
}

footer {
    padding-bottom: 60px;
    text-align: center;
    color: #a0aec0;
}

/* COUNTDOWN STYLES */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.countdown-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c4a457; /* Gold accent */
    font-family: 'Playfair Display', serif;
}

.countdown-item label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    margin-bottom: 0; /* Reset label margin */
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 10px;
    }
    .countdown-item {
        min-width: 65px;
        padding: 10px;
    }
}

/* CHECKBOX STYLING */
.checkbox-group {
    margin-bottom: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    color: #4a5568;
    user-select: none;
    text-transform: none; /* Override the uppercase label style */
    letter-spacing: normal;
    font-weight: 500;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f7f6f2;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #c4a457;
    border-color: #c4a457;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* PAYMENT SECTION (HOW TO PAY) */
.payment-box {
    background: rgba(196, 164, 87, 0.05); /* Very light gold tint */
    padding: 25px;
    border-radius: 15px;
    border: 1px dashed #c4a457;
    margin-bottom: 35px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.option-number {
    background: #c4a457;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.option h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.option p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

/* PAYMENT METHOD QUESTION IN FORM */
select#paymentMethod {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: #4a5568;
    cursor: pointer;
    appearance: none; /* Removes default browser styling */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select#paymentMethod:focus {
    outline: none;
    border-color: #c4a457;
    box-shadow: 0 0 0 3px rgba(196, 164, 87, 0.1);
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}