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

:root {
    --primary-blue: #4A90E2;
    --primary-blue-dark: #357ABD;
    --secondary-yellow: #FFB84D;
    --secondary-orange: #FF8C42;
    --bg-white: #FFFFFF;
    --bg-off-white: #F8F9FA;
    --bg-light-gray: #F0F2F5;
    --text-dark: #2C3E50;
    --text-medium: #5A6C7D;
    --text-light: #8B9AAB;
    --border-color: #E1E8ED;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-off-white) 0%, var(--bg-white) 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.coming-soon {
    font-size: 0.85em;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-yellow) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background-color: white;
    top: 20px;
    left: 20px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-orange);
    bottom: 40px;
    right: 40px;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background-color: white;
    top: 50%;
    right: 20px;
}

.hero-icon {
    font-size: 5rem;
    z-index: 1;
}

/* Highlights Strip */
.highlights {
    padding: 3rem 0;
    background-color: var(--bg-white);
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-off-white);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.highlight-icon-calendar::before {
    content: '📅';
    font-size: 3rem;
    display: block;
}

.highlight-icon-family::before {
    content: '👨‍👩‍👧‍👦';
    font-size: 3rem;
    display: block;
}

.highlight-icon-mobile::before {
    content: '📱';
    font-size: 3rem;
    display: block;
}

.highlight-icon-beach::before {
    content: '🏖️';
    font-size: 3rem;
    display: block;
}

.hero-icon::before {
    content: '📅';
    font-size: 5rem;
    display: block;
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Holidays Section */
.holidays-section {
    padding: 4rem 0;
    background-color: var(--bg-off-white);
}

.loading-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-light-gray);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-state {
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: var(--radius-md);
    color: var(--secondary-orange);
    margin-bottom: 2rem;
}

.error-state p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.share-section {
    margin-top: 1rem;
}

.btn-share {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
    grid-column: 1 / -1;
}

.no-results p {
    font-size: 1.1rem;
}

/* Search Bar */
.search-container {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* Saved Holidays Section */
.saved-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.saved-container {
    min-height: 100px;
}

.saved-empty {
    text-align: center;
    color: var(--text-medium);
    padding: 2rem;
    font-style: italic;
}

.saved-holiday-item {
    background-color: var(--bg-off-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.saved-holiday-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.saved-holiday-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--secondary-orange);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-remove:hover {
    transform: scale(1.2);
}

/* Long Weekends Section */
.long-weekends-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.long-weekend-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.long-weekends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.long-weekend-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-orange);
    transition: all 0.3s ease;
}

.long-weekend-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.long-weekend-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.long-weekend-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.long-weekend-date {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.long-weekend-days {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

.long-weekend-suggestion {
    padding: 0.75rem;
    background-color: rgba(255, 184, 77, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--secondary-orange);
    font-weight: 500;
}

/* Activity Ideas */
.activity-ideas {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.activity-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
}

.activity-list {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    display: none;
}

.activity-list.show {
    display: block;
}

.activity-list li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Favorite Star Button */
.favorite-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.2s ease;
    color: var(--text-light);
}

.favorite-btn:hover {
    transform: scale(1.2);
}

.favorite-btn.active {
    color: var(--secondary-yellow);
}

.favorite-btn.active::before {
    content: '★';
}

.favorite-btn:not(.active)::before {
    content: '☆';
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.filter-select {
    padding: 0.625rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: white;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.filter-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border-color);
    background-color: white;
    border-radius: 20px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.pill-btn.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.holidays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.holiday-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.holiday-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.holiday-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.holiday-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.holiday-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-national {
    background-color: var(--primary-blue);
    color: white;
}

.badge-state {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
}

.holiday-date {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.holiday-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-long-weekend {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
}

.tag-family {
    background-color: rgba(255, 184, 77, 0.2);
    color: var(--secondary-orange);
}

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.calendar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.calendar-features {
    list-style: none;
    margin-top: 1.5rem;
}

.calendar-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.calendar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.calendar-preview {
    display: flex;
    justify-content: center;
}

.mini-calendar {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1rem;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: background-color 0.2s ease;
}

.calendar-day:hover:not(.empty) {
    background-color: var(--bg-light-gray);
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.holiday {
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
}

.event-dot {
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.holiday-dot {
    background-color: var(--primary-blue);
}

.kidzo-dot {
    background-color: var(--secondary-orange);
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* AI Video Maker Section */
.ai-video-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.ai-video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ai-video-form-card,
.ai-video-results-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.ai-video-form .form-group {
    margin-bottom: 1.5rem;
}

.ai-video-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ai-video-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.ai-video-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.checkbox-label span {
    color: var(--text-dark);
}

.ai-video-results {
    min-height: 400px;
}

.results-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
    font-style: italic;
}

.result-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.result-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.result-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-copy {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-copy.copied {
    background-color: rgba(74, 144, 226, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.result-content {
    background-color: var(--bg-off-white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    max-height: 300px;
    overflow-y: auto;
}

.result-loading {
    text-align: center;
    padding: 3rem;
    color: var(--primary-blue);
}

.result-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* FAQs Section */
.faqs-section {
    padding: 4rem 0;
    background-color: var(--bg-off-white);
}

.faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light-gray);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

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

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

.contact-form .btn {
    width: 100%;
    text-align: center;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .calendar-preview {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-card {
        width: 250px;
        height: 250px;
    }

    .hero-icon {
        font-size: 4rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}
