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

:root {
    --primary-color: #2d5016;
    --primary-light: #4a7c2c;
    --primary-dark: #1a3d0a;
    --accent-color: #d4a574;
    --accent-light: #e8c9a3;
    --secondary-color: #3a3a3a;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-muted: #999;
    --bg-cream: #faf8f5;
    --bg-light: #f5f3f0;
    --white: #ffffff;
    --border-color: #e8e6e3;
    --shadow: 0 2px 12px rgba(45, 80, 22, 0.08);
    --shadow-hover: 0 4px 24px rgba(45, 80, 22, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(45, 80, 22, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--primary-dark);
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    padding: 3rem 0;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 80, 22, 0.75) 0%,
        rgba(45, 80, 22, 0.65) 50%,
        rgba(45, 80, 22, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
    font-style: italic;
    opacity: 0.95;
}

.hero-contact-info {
    background: rgba(45, 80, 22, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    color: var(--white);
    text-align: center;
}

.hero-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent-beige);
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

.info-extra {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-beige);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.hero-info-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-info-item a:hover {
    color: var(--accent-beige);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

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

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

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 3rem 0;
}

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

.section-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--white);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.feature {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.1);
    border-color: var(--primary-light);
}

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

.feature h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Menu Section
   =================================== */
.menu {
    background: var(--bg-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
}

.menu .container {
    max-width: 1000px;
}

.menu-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.menu-header-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.25rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.lang-btn {
    background: transparent;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.2);
}

.menu-close {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.menu-close:hover {
    background: var(--primary-light);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

.menu-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.menu-categories {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
    border: 1px solid var(--border-color);
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.menu-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-categories {
    display: grid;
    gap: 2rem;
}

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(45, 80, 22, 0.08);
    transition: all 0.3s ease;
}

.menu-category:hover {
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.12);
}

.category-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-beige);
    font-weight: 600;
}

.category-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin: -0.5rem 0 1rem 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

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

.item-price {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
    font-size: 1.05rem;
}

.item-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* PDF Container */
.menu-pdf-container {
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
}

.menu-pdf-viewer {
    width: 100%;
    min-height: 800px;
    border: none;
    display: block;
}

/* Menu Images Container */
.menu-images-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Lunch Menu Image Container */
.lunch-menu-image-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.menu-image {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.menu-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* PDF Download Link */
.menu-pdf-download {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.05);
}

.menu-pdf-download p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pdf-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.pdf-link:hover {
    color: var(--primary-light);
}

/* ===================================
   Mittagstisch Section
   =================================== */
.mittagstisch-section {
    background: var(--white);
    padding: 4rem 0;
}

.mittagstisch-image {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
}

.mittagstisch-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--bg-light);
    padding: 3rem 0;
}

.gallery .container {
    max-width: 1200px;
}

.gallery-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.gallery-close {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.gallery-close:hover {
    background: var(--primary-light);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(45, 80, 22, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bg-cream);
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1rem;
}

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

.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-style: italic;
}

.gallery-note code {
    background: var(--bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-light);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(45, 80, 22, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.phone-large {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0.5rem 0 !important;
}

.phone-note {
    font-size: 0.9rem;
    color: var(--text-muted) !important;
}

.hours-placeholder {
    font-style: italic;
}

.hours-placeholder em {
    color: var(--text-muted);
    font-weight: 400;
}

/* Private Events Notice */
.private-events-notice {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.05);
    border: 2px dashed var(--primary-light);
}

.events-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.private-events-notice h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.private-events-notice p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-light);
    color: var(--white);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ===================================
   Impressum Section
   =================================== */
.impressum-content {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.impressum-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.impressum-content h3:first-of-type {
    margin-top: 0;
}

.impressum-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.impressum-content strong {
    color: var(--primary);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-contact-info {
        padding: 1.5rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .info-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .info-text {
        font-size: 1rem;
    }

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

    .menu-header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-header-controls {
        width: 100%;
        justify-content: space-between;
    }

    .language-switcher {
        flex: 1;
        justify-content: center;
        max-width: 200px;
    }

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

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .item-price {
        font-size: 1rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    section {
        padding: 3rem 0;
    }
}
