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

:root {
    /* Primary Colors */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;

    /* Accent Colors */
    --accent-50: #fefce8;
    --accent-100: #fef9c3;
    --accent-200: #fef08a;
    --accent-300: #fde047;
    --accent-400: #facc15;
    --accent-500: #eab308;
    --accent-600: #ca8a04;
    --accent-700: #a16207;
    --accent-800: #854d0e;
    --accent-900: #713f12;

    /* Gray Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Fonts */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    line-height: 1.6;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: white;
    transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utilities */
.hidden {
    display: none;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.nav-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
}

.nav-menu-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu-desktop {
        display: flex;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-link i {
    width: 1rem;
    height: 1rem;
}

.nav-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 0.375rem;
    background: none;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .nav-mobile-btn {
        display: none;
    }
}

.nav-mobile-btn:hover {
    color: var(--primary-600);
    background: var(--gray-100);
}

.nav-mobile-menu {
    border-top: 1px solid var(--gray-200);
    background: white;
}

@media (min-width: 768px) {
    .nav-mobile-menu {
        display: none;
    }
}

.nav-mobile-items {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-mobile-link:hover {
    color: var(--primary-600);
    background: var(--gray-50);
}

.nav-mobile-link i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, white 50%, var(--accent-50) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-bg-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--primary-500);
}

.hero-bg-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: var(--accent-500);
}

.hero-bg-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: linear-gradient(45deg, var(--primary-500), var(--accent-500));
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary i {
    transition: transform 0.2s ease;
}

.btn-primary:hover i {
    transform: translateX(0.25rem);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-900);
    border: 1px solid var(--gray-300);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
}

.hero-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-category-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-category-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-category-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary-100);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-600);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-gradient {
    opacity: 0.1;
}

.category-gradient-music {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.category-gradient-concerts {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.category-gradient-photography {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.category-gradient-food {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-content {
    position: relative;
    padding: 2rem;
}

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

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-icon i {
    width: 1.75rem;
    height: 1.75rem;
}

.category-icon-music {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.category-icon-concerts {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.category-icon-photography {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.category-icon-food {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-posts {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.category-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.category-card:hover .category-title {
    color: var(--primary-600);
}

.category-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-600);
    font-weight: 600;
    transition: color 0.2s ease;
}

.category-card:hover .category-link {
    color: var(--primary-700);
}

.category-link i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.category-card:hover .category-link i {
    transform: translateX(0.25rem);
}

.category-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-hover-line {
    opacity: 1;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.featured-main {
    margin-bottom: 3rem;
}

.featured-card {
    display: block;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-card-large {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.featured-card-large:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-image {
    width: 100%;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.featured-card-large .featured-image {
    height: 20rem;
}

@media (min-width: 1024px) {
    .featured-card-large .featured-image {
        height: 20rem;
    }
}

.featured-image i {
    width: 3rem;
    height: 3rem;
    opacity: 0.5;
}

.featured-card-large .featured-image i {
    width: 4rem;
    height: 4rem;
}

.featured-image-music {
    background: linear-gradient(135deg, #a855f7, #ec4899, #ef4444);
}

.featured-image-photography {
    background: linear-gradient(135deg, #3b82f6, #a855f7, #10b981);
}

.featured-image-concerts {
    background: linear-gradient(135deg, #06b6d4, #a855f7, #10b981);
}

.featured-content {
    padding: 1.5rem;
}

.featured-card-large .featured-content {
    padding: 2rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.featured-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.featured-category i {
    width: 0.75rem;
    height: 0.75rem;
}

.featured-category-music {
    background: #f3e8ff;
    color: #7c3aed;
}

.featured-category-photography {
    background: #dcfdf7;
    color: #059669;
}

.featured-category-concerts {
    background: #dbeafe;
    color: #2563eb;
}

.featured-separator {
    color: var(--gray-300);
}

.featured-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.featured-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.featured-card-large .featured-title {
    font-size: 1.875rem;
}

@media (min-width: 1024px) {
    .featured-card-large .featured-title {
        font-size: 1.875rem;
    }
}

.featured-card:hover .featured-title {
    color: var(--primary-600);
}

.featured-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-card-large .featured-excerpt {
    font-size: 1.125rem;
}

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

.featured-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.featured-date,
.featured-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-date i,
.featured-time i {
    width: 1rem;
    height: 1rem;
}

.featured-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-600);
    font-weight: 600;
    transition: color 0.2s ease;
}

.featured-card:hover .featured-link {
    color: var(--primary-700);
}

.featured-link i {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.featured-card:hover .featured-link i {
    transform: translateX(0.25rem);
}

.featured-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .featured-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

.newsletter-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .newsletter-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .newsletter-container {
        padding: 0 2rem;
    }
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.newsletter-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.newsletter-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .newsletter-input-group {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-600);
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.newsletter-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.newsletter-btn:hover:not(:disabled) i {
    transform: translateX(0.25rem);
}

.newsletter-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--primary-600);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--primary-400);
}

.footer-social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
}

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

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-made-with {
    color: var(--gray-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-heart {
    width: 1rem;
    height: 1rem;
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
} 