/* ============================================================
   PADEL RETREATS ZA — Main Stylesheet
   Brand: Navy #0a1628, Gold #c9a84c, Champagne #f5f0e8
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0a1628;
    --navy-light: #0f1f38;
    --navy-dark: #060e1a;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b08f3a;
    --champagne: #f5f0e8;
    --cream: #faf8f4;
    --ocean: #1a5276;
    --ocean-light: #2471a3;
    --white: #ffffff;
    --text-light: #c8c8c8;
    --text-muted: #8a9ab5;
    --text-dark: #1a1a2e;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.site-nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #0d2137 70%, var(--navy-dark) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(26, 82, 118, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* --- Section Spacing --- */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--navy-dark);
}
.section-gradient {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
}
.about-feature h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.about-visual {
    position: relative;
}
.about-card {
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.8));
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}
.about-card-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}
.about-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Experience Timeline --- */
.timeline {
    position: relative;
    margin-top: 64px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    width: calc(50% - 40px);
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.6));
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--navy);
    z-index: 2;
    top: 30px;
}
.timeline-day {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.timeline-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}
.timeline-hours {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* --- Venues Section --- */
.venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.venue-card {
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.5));
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.venue-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.venue-image {
    height: 220px;
    background: linear-gradient(135deg, var(--ocean), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.venue-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(15, 31, 56, 1));
}
.venue-info {
    padding: 28px 32px;
}
.venue-info h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}
.venue-info .venue-location {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.venue-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Package Section --- */
.package-card {
    max-width: 680px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.8));
    border: 2px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.package-header {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    padding: 40px 48px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.package-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.package-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.package-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}
.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}
.package-body {
    padding: 36px 48px 40px;
}
.package-includes {
    list-style: none;
    margin-bottom: 32px;
}
.package-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-light);
}
.package-includes li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.package-cta {
    text-align: center;
}
.package-cta .btn {
    width: 100%;
    justify-content: center;
}

/* --- Booking Section --- */
.booking-form-wrapper {
    max-width: 640px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.8));
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 48px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group input::placeholder {
    color: var(--text-muted);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9ab5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-group select option {
    background: var(--navy);
    color: var(--white);
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}
.form-note svg {
    vertical-align: middle;
    margin-right: 4px;
}

/* --- Inclusions Grid --- */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.inclusion-item {
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.5));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}
.inclusion-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}
.inclusion-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.inclusion-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.inclusion-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.contact-card {
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.5));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}
.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.contact-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-card a {
    color: var(--gold);
    font-weight: 500;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    gap: 48px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Confirmation Page --- */
.confirmation-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    padding: 40px 24px;
}
.confirmation-card {
    max-width: 560px;
    background: linear-gradient(135deg, var(--navy-light), rgba(15, 31, 56, 0.8));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 56px 48px;
}
.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}
.confirmation-card h1 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.confirmation-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .venues-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
    .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.1);
    }
    .nav-links.active li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section { padding: 64px 0; }
    .section-title { font-size: 1.8rem; }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px; }
    .timeline-dot { left: 20px; }

    .about-features { grid-template-columns: 1fr; }
    .inclusions-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form-wrapper { padding: 32px 24px; }
    .package-header { padding: 32px 24px 20px; }
    .package-body { padding: 28px 24px 32px; }
    .package-price { font-size: 2.4rem; }

    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .container { padding: 0 16px; }
}
