/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Pastel Child-Friendly Color Palette */
:root {
    /* Colors */
    --background: hsl(45, 30%, 98%);
    --foreground: hsl(220, 20%, 20%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 20%, 20%);
    
    /* Primary: Pastel Sky Blue */
    --primary: hsl(200, 70%, 65%);
    --primary-foreground: hsl(200, 80%, 15%);
    --primary-glow: hsl(200, 80%, 80%);
    
    /* Secondary: Pastel Mint Green */
    --secondary: hsl(155, 50%, 75%);
    --secondary-foreground: hsl(155, 60%, 20%);
    
    /* Accent: Pastel Peach/Salmon */
    --accent: hsl(25, 80%, 80%);
    --accent-foreground: hsl(25, 70%, 25%);
    
    /* Tertiary: Pastel Yellow */
    --tertiary: hsl(50, 85%, 78%);
    --tertiary-foreground: hsl(50, 70%, 25%);
    
    --muted: hsl(45, 20%, 94%);
    --muted-foreground: hsl(220, 15%, 45%);
    
    --destructive: hsl(0, 65%, 55%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --success: hsl(145, 60%, 50%);
    --warning: hsl(45, 90%, 55%);
    
    --border: hsl(45, 20%, 90%);
    --input: hsl(45, 20%, 92%);
    --ring: hsl(200, 70%, 65%);
    
    /* Rating Stars */
    --star-filled: hsl(45, 100%, 58%);
    --star-empty: hsl(45, 20%, 85%);
    
    --radius: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px hsla(220, 20%, 20%, 0.04);
    --shadow-md: 0 4px 16px hsla(220, 20%, 20%, 0.06);
    --shadow-lg: 0 8px 32px hsla(220, 20%, 20%, 0.08);
    --shadow-card: 0 4px 20px hsla(200, 70%, 65%, 0.1);
    --shadow-card-hover: 0 8px 30px hsla(200, 70%, 65%, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(200, 70%, 60%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
}

.btn-hero {
    background-color: #6bb6e3;
    color: #0f2a3b;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
}

.btn-accent {
    background-color: #f6c7a1;
    color: var(--accent-foreground);
}

.btn-destructive {
    background-color: var(--destructive);
    color: var(--destructive-foreground);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #bfe7f5 0%, #d9f2e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid hsla(200, 70%, 65%, 0.15);
}

.logo-text {
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-primary {
    color: var(--primary);
}

.header-search {
    flex: 1;
    max-width: 28rem;
    margin: 0 1rem;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
}

.search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 9999px;
    background-color: #f6f7f9;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--card);
    box-shadow: 0 0 0 3px hsla(200, 70%, 65%, 0.1);
}

.header-nav {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: var(--muted);
}

.nav-link.active {
    color: var(--primary);
    background-color: hsla(200, 70%, 65%, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-actions .btn {
    border-radius: 9999px;
    padding: 0.45rem 1.1rem;
}

.header-actions .btn-outline {
    border-color: #69b4e4;
    color: #5aa7da;
    background-color: transparent;
}

.header-actions .btn-outline:hover {
    background-color: hsla(200, 70%, 65%, 0.12);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 6rem;
}

.gradient-hero {
    background: linear-gradient(135deg, hsl(200, 70%, 90%) 0%, hsl(155, 50%, 90%) 50%, hsl(50, 85%, 90%) 100%);
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.blob-1 {
    width: 8rem;
    height: 8rem;
    background: var(--primary);
    top: 5rem;
    left: 2.5rem;
}

.blob-2 {
    width: 10rem;
    height: 10rem;
    background: var(--secondary);
    bottom: 5rem;
    right: 2.5rem;
}

.blob-3 {
    width: 6rem;
    height: 6rem;
    background: var(--accent);
    top: 10rem;
    right: 25%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(180deg, #9fc8e2 0%, #cfe8f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-search {
    background-color: var(--card);
    border-radius: 9999px;
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow-card);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 1024px) {
    .hero-search {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-search-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-search-inputs {
        flex-direction: row;
    }
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    pointer-events: none;
}

.input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--card);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(200, 70%, 65%, 0.1);
}

.hero-search .input {
    border-radius: 9999px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: #7aa3b9;
}

.hero-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(0, 0%, 0%, 0.3), transparent);
}

.hero-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--card);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-card-hover);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: hsla(155, 50%, 75%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-foreground);
}

.floating-card-title {
    font-weight: 700;
    color: var(--foreground);
}

.floating-card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--card);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background-color: hsla(200, 70%, 65%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Kindergartens Section */
.kindergartens-section {
    padding: 4rem 0;
}

.kindergartens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .kindergartens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kindergartens-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kindergarten Card */
.kindergarten-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kindergarten-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.kindergarten-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.kindergarten-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.kindergarten-card:hover .kindergarten-card-image img {
    transform: scale(1.1);
}

.kindergarten-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(0, 0%, 0%, 0.6), transparent);
}

.kindergarten-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.375rem 0.75rem;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-statni {
    background-color: hsl(200, 70%, 65%);
    color: var(--primary-foreground);
}

.badge-soukroma {
    background-color: hsl(25, 80%, 80%);
    color: var(--accent-foreground);
}

.badge-secondary {
    background-color: var(--muted);
    color: var(--muted-foreground);
}

.favorite-form {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.favorite-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.favorite-btn:hover {
    background-color: var(--card);
}

.favorite-btn.active svg {
    fill: var(--destructive);
    color: var(--destructive);
}

.kindergarten-card-rating {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: var(--star-empty);
}

.star.filled {
    color: var(--star-filled);
}

.rating-number {
    margin-left: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.125rem 0.5rem;
    border-radius: calc(var(--radius) - 2px);
}

.kindergarten-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kindergarten-card-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.kindergarten-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.kindergarten-card:hover .kindergarten-card-title {
    color: var(--primary);
}

.kindergarten-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.info-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.kindergarten-card-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.program-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    background-color: var(--muted);
    border-radius: 9999px;
    color: var(--muted-foreground);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: var(--card);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-decoration: none !important;
}

/* Odstranění podtržení z odkazů, které obsahují blog-title */
.blog-content > a,
a .blog-title {
    text-decoration: none !important;
}

.blog-content > a:hover,
a:hover .blog-title {
    text-decoration: none !important;
}

.blog-title a {
    color: var(--foreground);
    text-decoration: none !important;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--primary);
    text-decoration: none !important;
}

.blog-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.gradient-fresh {
    background: linear-gradient(135deg, hsl(155, 50%, 80%) 0%, hsl(200, 70%, 75%) 100%);
}

.cta-content {
    max-width: 42rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(5, 1fr);
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.2s;
}

.social-link svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor;
}

.social-link:hover {
    background-color: hsla(200, 70%, 65%, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-cities {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cities-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-cities-label {
    font-weight: 600;
    white-space: nowrap;
}

.footer-cities-list {
    display: inline;
}

.footer-cities-list a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-cities-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 4rem - 200px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1023px) {
    .header-nav {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-search {
    margin-bottom: 1.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--foreground);
    border-radius: var(--radius);
    transition: background-color 0.2s;
}

.mobile-nav-link:hover {
    background-color: var(--muted);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Continue with more styles... */
/* Due to length, I'll create a separate file for additional styles */
