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

:root {
    /* Color Scheme */
    --primary-color: #2c5f2d;
    --secondary-color: #97c24e;
    --accent-color: #ff6b35;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ===============================================
   ACCESSIBILITY ENHANCEMENTS
   =============================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===============================================
   HEADER & NAVIGATION - USING FLEXBOX
   =============================================== */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a1b 100%);
    color: var(--white);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===============================================
   HERO SECTION - USING GRID
   =============================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 500px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
    color: var(--white);
    z-index: 2;
}

.hero-background {
    grid-column: 1;
    grid-row: 1;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.cta-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   MAIN CONTENT SECTIONS
   =============================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================================
   CARD GRID - USING CSS GRID
   =============================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--shadow);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-light);
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.card-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    text-decoration: underline;
}

/* ===============================================
   FEATURES SECTION - USING FLEXBOX
   =============================================== */
.features {
    background: var(--bg-light);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: space-around;
}

.feature-item {
    flex: 1 1 250px;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: bold;
}

/* ===============================================
   INFO SECTION - USING GRID
   =============================================== */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.info-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px var(--shadow);
}

.info-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.info-list {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.info-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 2rem;
    position: relative;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===============================================
   CONTACT FORM - USING FLEXBOX
   =============================================== */
.contact-container {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-form {
    flex: 1 1 400px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info {
    flex: 1 1 300px;
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    margin-bottom: var(--spacing-md);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

/* ===============================================
   FOOTER - USING GRID
   =============================================== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.student-notice {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem var(--spacing-md);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-md);
}

.student-notice p {
    margin: 0;
    color: var(--white);
}

/* ===============================================
   RESPONSIVE DESIGN - TABLET
   =============================================== */
@media (max-width: 1024px) {
    :root {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Further reduce nav menu spacing on medium screens */
    .nav-menu {
        gap: 0.4rem;
    }

    .nav-menu a {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE
   =============================================== */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        padding: 0.5rem 0.75rem;
        font-size: 1.5rem;
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .main-navigation {
        width: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.25rem;
        border-radius: 6px;
        text-align: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }

    .hero {
        grid-template-rows: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===============================================
   AUTH PAGES (Login, Register)
   =============================================== */
.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-sm);
    background: var(--bg-light);
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.auth-card h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.auth-subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.auth-form .form-group {
    margin-bottom: var(--spacing-sm);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #1a4a1b;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.auth-footer {
    text-align: center;
    margin-top: var(--spacing-sm);
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.divider {
    text-align: center;
    margin: var(--spacing-md) 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    color: var(--text-light);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-social {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-social:hover {
    background: var(--bg-light);
}

.demo-credentials {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
}

.demo-credentials h4 {
    color: #856404;
    margin-bottom: var(--spacing-xs);
}

.demo-credentials p {
    font-size: 0.85rem;
    color: #856404;
    margin-bottom: var(--spacing-xs);
}

.password-strength, .password-match {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

/* ===============================================
   GALLERY PAGE
   =============================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    padding: var(--spacing-sm);
    background: var(--white);
}

.gallery-caption h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gallery-placeholder p {
    color: var(--text-light);
    font-weight: 600;
}

/* ===============================================
   EVENTS PAGE
   =============================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.event-card {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm);
    border-radius: 8px;
}

.event-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.event-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.event-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.event-registration-form {
    max-width: 600px;
    margin: var(--spacing-md) auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

/* ===============================================
   BOOKING PAGE
   =============================================== */
.booking-form-container {
    max-width: 700px;
    margin: var(--spacing-md) auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.radio-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.booking-summary {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.booking-summary h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--primary-color);
    font-size: 1.2rem;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.info-box-simple {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box-simple h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* ===============================================
   USER PROFILE PAGE
   =============================================== */
.profile-page {
    padding: var(--spacing-md) 0;
}

.profile-page .subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.profile-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.profile-sidebar {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-sm);
}

.profile-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.user-status {
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile-nav ul {
    list-style: none;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.profile-nav li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.profile-nav li a:hover,
.profile-nav li a.active {
    background: var(--primary-color);
    color: var(--white);
}

.profile-main {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.profile-section {
    margin-bottom: var(--spacing-lg);
}

.profile-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.booking-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: var(--spacing-md);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.booking-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.booking-details p {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.booking-actions {
    margin-top: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-danger:hover {
    background: #dc3545;
    color: var(--white);
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.favorite-card {
    text-align: center;
}

.favorite-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-xs);
}

.favorite-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.btn-remove {
    margin-top: var(--spacing-xs);
}

/* ===============================================
   ADMIN DASHBOARD
   =============================================== */
.admin-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-change {
    font-size: 0.85rem;
    color: var(--text-light);
}

.admin-tabs {
    display: flex;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    padding: var(--spacing-sm) var(--spacing-md);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.tab-content.active {
    display: block;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-md);
}

.admin-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm);
    text-align: left;
}

.admin-table td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid #ddd;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.user-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.user-regular {
    background: #d1ecf1;
    color: #0c5460;
}

.user-admin {
    background: #f8d7da;
    color: #721c24;
}

.content-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.admin-form {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.form-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: 8px;
}

.content-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.content-item .content-actions {
    margin: 0;
}

/* ===============================================
   RESPONSIVE - Mobile
   =============================================== */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
