/* Base Styles */
body {
    background-color: #fdfaf4;
    font-family: 'Georgia', serif;
    color: #1a2b49;
    margin: 0;
    padding: 20px;
}

.main-header { text-align: center; margin-bottom: 20px; }
.main-logo { width: 220px; height: auto; }
.tagline { font-style: italic; color: #555; }

/* Section Management */
.primary-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.section-divider {
    width: 60%;
    border: 0;
    border-top: 1px solid #d4af37;
    margin: 40px auto;
}

.row-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* Horizontal Calendar Row */
.calendar-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.calendar-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 260px;
    text-align: center;
}

.days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.day { padding: 6px; background: #f9f9f9; border-radius: 3px; font-size: 0.75rem; color: #ccc; }
.day.available { background: #fff9e6; border: 1px solid #d4af37; color: #1a2b49; font-weight: bold; cursor: pointer; }

/* Summer Colors */
.june-theme { border-top: 4px solid #ff8c00; }
.july-theme { border-top: 4px solid #00aaff; }

/* Horizontal Button Layouts */
.horizontal-action {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.action-icon { width: 80px; height: auto; }

.request-btn {
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-family: sans-serif;
    cursor: pointer;
    transition: transform 0.2s;
    min-width: 200px;
}

.request-btn.standard { background-color: #16a34a; }
.request-btn.fifa { background-color: #003366; }

.fifa-action {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Modal / Popup Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    width: 320px;
    border-radius: 15px;
    position: relative;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    background-color: #16a34a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.close {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 24px;
    cursor: pointer;
}