/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
}

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

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-search {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Hero section search input styling */
.hero .browse-filter-group {
    width: 100%;
    max-width: 600px;
}

.hero .browse-filter-group label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Hero search box container (input + button) */
.hero-search-box {
    display: flex;
    gap: 0.5rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.hero .search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    outline: none;
}

.hero .search-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.hero .search-input:focus {
    outline: none;
}

/* Hero search button */
.hero .search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.hero .search-btn:hover {
    background: var(--primary-dark);
}

.hero .search-btn:active {
    transform: scale(0.98);
}

/* Hero section checkbox styling */
.hero .hero-checkbox {
    margin-top: 0.5rem;
}

.hero .hero-checkbox label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .hero-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: white;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    color: var(--text-dark);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.quick-searches {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.quick-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.quick-search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Sections */
.featured-section,
.categories-section,
.how-it-works,
.trust-section {
    padding: 4rem 0;
}

.featured-section {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Camps Grid */
.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.camp-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.camp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.camp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.camp-card-header > div {
    flex: 1;
}

/* Heart icon - favorite toggle on camp cards */
.heart-icon {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.heart-icon:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.heart-icon svg {
    width: 24px;
    height: 24px;
}

.heart-outline svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.heart-filled {
    color: #dc2626;
}

.heart-filled svg {
    fill: currentColor;
    stroke: none;
}

/* Unavailable camp card (removed from Airtable) */
.camp-card-unavailable {
    opacity: 0.85;
}

.camp-card-unavailable .camp-card-unavailable-content {
    padding: 0.5rem 0;
}

.camp-card-unavailable .camp-name {
    color: var(--text-light);
}

.camp-category {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-right: 0.5rem;
}

.camp-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.camp-short-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.camp-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.camp-detail-item {
    display: flex;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 60px;
}

.detail-value {
    color: var(--text-light);
}

.badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Registration Status Badges - Color Coded */
.badge-status-open {
    background: #d1fae5;
    color: #065f46;
}

.badge-status-coming-soon {
    background: #fef3c7;
    color: #92400e;
}

.badge-status-not-updated {
    background: #e5e7eb;
    color: #374151;
}

.btn-view-details {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}

.btn-view-details:hover {
    background: var(--primary-dark);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

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

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Browse Page */
.browse-page {
    padding: 3rem 0;
}

.browse-header {
    margin-bottom: 2rem;
}

.browse-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.browse-header p {
    color: var(--text-light);
}

/* Favorites page */
.favorites-page {
    padding: 3rem 0;
}

.favorites-header {
    margin-bottom: 2rem;
}

.favorites-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.favorites-header p {
    color: var(--text-light);
}

.favorites-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.favorites-empty h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.favorites-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.favorites-error {
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.browse-filters {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem 1.5rem 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.browse-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
    align-items: flex-end;
}

.browse-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 150px;
}

.browse-filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.browse-filter-group input[type="number"],
.browse-filter-group select {
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.browse-filter-search {
    flex: 1;
    min-width: 240px;
}

.browse-filter-aftercare {
    min-width: 140px;
}

.browse-filter-aftercare label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.browse-filters-footer {
    justify-content: space-between;
}

.browse-results-summary {
    font-size: 0.95rem;
    color: var(--text-light);
}

.browse-results {
    margin-top: 1rem;
}

.browse-no-results {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-light);
}

.browse-no-results h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.browse-no-results p {
    margin-bottom: 1rem;
}

/* Camp Detail Page */
.camp-detail-page {
    padding: 3rem 0;
}

.camp-detail-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.camp-detail-back:hover {
    text-decoration: underline;
}

.camp-detail {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.camp-detail-header-top {
    margin-bottom: 1rem;
}

.camp-detail-header-top > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.camp-detail-title {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.camp-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.camp-detail-meta-item {
    display: flex;
    gap: 0.4rem;
}

.camp-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.btn-favorite-add,
.btn-favorite-remove {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-favorite-add {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-favorite-add:hover {
    background: var(--primary-dark);
}

.btn-favorite-remove {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-favorite-remove:hover {
    color: #dc2626;
    border-color: #dc2626;
}

.camp-detail-section {
    margin-top: 2rem;
}

.camp-detail-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.camp-detail-description {
    color: var(--text-light);
    line-height: 1.7;
}

.camp-detail-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.camp-activity-pill {
    background: var(--bg-light);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.camp-detail-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.camp-detail-note-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.camp-detail-note-item .detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.camp-detail-note-item .detail-value {
    color: var(--text-light);
    line-height: 1.6;
    white-space: pre-line;
}

.camp-detail-error h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.camp-detail-error p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .camps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }

    .camp-detail {
        padding: 1.5rem;
    }

    .camp-detail-title {
        font-size: 1.6rem;
    }

    .camp-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Feedback System Styles */

/* Floating Feedback Button */
.feedback-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feedback-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feedback-button:active {
    transform: translateY(0);
}

/* Feedback Modal Backdrop */
.feedback-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feedback-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Feedback Modal */
.feedback-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.feedback-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.feedback-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.feedback-close:hover {
    color: var(--text-dark);
}

.feedback-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-question {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-question label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.rating-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.rating-btn {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-btn:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.rating-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.feedback-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.feedback-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.feedback-textarea::placeholder {
    color: var(--text-light);
}

.feedback-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.feedback-submit:hover:not(:disabled) {
    background: var(--primary-dark);
}

.feedback-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.feedback-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #fecaca;
}

.feedback-success {
    background: #d1fae5;
    color: #065f46;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #a7f3d0;
    text-align: center;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feedback-button {
        bottom: 15px;
        right: 15px;
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .feedback-modal {
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }

    .feedback-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .rating-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .feedback-submit {
        width: 100%;
    }
}

/* About Page Styles */
.about-page {
    padding: 3rem 0;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.about-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.about-content a:hover {
    text-decoration: underline;
}

.about-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-content p,
    .about-content li {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
}

/* Auth pages (login, signup) */
.auth-page {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.auth-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-auth {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: background 0.2s, color 0.2s;
}

.btn-auth-google {
    background: white;
    color: var(--text-dark);
}

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

.btn-auth-facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.btn-auth-facebook:hover {
    background: #166fe5;
}

.auth-link-text {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.auth-link-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-link-text a:hover {
    text-decoration: underline;
}

/* Nav/footer auth links */
#nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#nav-auth a,
.nav-auth-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

#nav-auth a:hover,
.nav-auth-link:hover {
    color: var(--primary-color);
}

.nav-auth-email {
    font-size: 0.9rem;
    color: var(--text-light);
}

#footer-auth {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

#footer-auth a {
    color: rgba(255, 255, 255, 0.8);
}

#footer-auth a:hover {
    color: white;
}

#footer-auth .nav-auth-email {
    color: rgba(255, 255, 255, 0.8);
}