/* Base Styles and Typography */
:root {
    --background: #ffffff;
    --foreground: #4a235a;
    --primary: #ff6abf;
    --primary-hover: #ff4baf;
    --secondary: #55acee;
    --secondary-hover: #3498db;
    --accent: #50d890;
    --accent-hover: #2ecc71;
    --muted: #f8e8ff;
    --muted-foreground: #6f42c1;
    --border: #e1bcff;
    --input: #e1bcff;
    --ring: #ff6abf;
    --radius: 16px;
    
    --color-pink: #ff6abf;
    --color-pink-light: #ffc7e8;
    --color-blue: #55acee;
    --color-blue-light: #cee8ff;
    --color-green: #50d890;
    --color-green-light: #d0f8e0;
    --color-purple: #9b59b6;
    --color-purple-light: #e5d2f0;
    --color-yellow: #f1c40f;
    --color-yellow-light: #fef3c7;
    --color-red: #e74c3c;
    --color-red-light: #fadbd8;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(#fce7f3 0.5px, transparent 0.5px), radial-gradient(#fce7f3 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
  }
  
  /* Utility Classes */
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(to right, #ffd1f0, #ffd1e8);
    color: var(--color-pink);
    margin-bottom: 1rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-12 {
    margin-top: 3rem;
  }
  
  .inline {
    display: inline-block;
  }
  
  .hidden {
    display: none;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-primary {
    background: linear-gradient(to right, var(--color-pink), #b53cf3);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--color-pink);
    color: var(--color-pink);
  }
  
  .btn-outline:hover {
    background-color: rgba(255, 106, 191, 0.05);
    transform: translateY(-3px);
  }
  
  .btn-white {
    background-color: white;
    color: var(--color-pink);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .btn-pink {
    background: linear-gradient(to right, var(--color-pink), #ff8acf);
    color: white;
  }
  
  .btn-blue {
    background: linear-gradient(to right, var(--color-blue), #77bef5);
    color: white;
  }
  
  .btn-green {
    background: linear-gradient(to right, var(--color-green), #71e5a9);
    color: white;
  }
  
  .btn-yellow {
    background: linear-gradient(to right, var(--color-yellow), #f7d358);
    color: white;
  }
  
  .btn-purple {
    background: linear-gradient(to right, var(--color-purple), #b27ad4);
    color: white;
  }
  
  .btn-red {
    background: linear-gradient(to right, var(--color-red), #ed7669);
    color: white;
  }
  
  /* Navigation */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  #navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-pink);
  }
  
  .logo-accent {
    color: var(--color-blue);
  }
  
  .desktop-menu {
    display: none;
  }
  
  .nav-link {
    margin-left: 2rem;
    color: var(--foreground);
    font-weight: 500;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--color-pink);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-pink);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .mobile-menu-button button {
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  #mobile-menu {
    background: linear-gradient(45deg, #ffccf9, #b5eeff, #fcf7bb, #a5ffba);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 1rem 0;
  }
  
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .mobile-menu-links .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-title {
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--color-pink), #9553e5, var(--color-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  .hero-text {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-in-out forwards;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeIn 1.4s ease-in-out forwards;
  }
  
  .hero-image {
    position: relative;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    animation: pulseSlow 6s infinite alternate;
  }
  
  .blob-1 {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -40px;
    background-color: var(--color-yellow);
  }
  
  .blob-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -40px;
    background-color: var(--color-pink);
    animation-delay: 2s;
  }
  
  .blob-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 20%;
    background-color: var(--color-blue);
    animation-delay: 4s;
  }
  
  .blob-small {
    filter: blur(20px);
  }
  
  .rainbow-border {
    position: relative;
    z-index: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .rainbow-border::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #fc6dab;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#ff79c6, #ff79c6), linear-gradient(#8be9fd, #8be9fd), linear-gradient(#50fa7b, #50fa7b), linear-gradient(#ffb86c, #ffb86c);
    animation: rotate 4s linear infinite;
  }
  
  .rainbow-border::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: transparent;
    border-radius: calc(var(--radius) - 6px);
  }
  
  .floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 1rem;
    z-index: 10;
    animation: floatUp 2s ease-in-out infinite alternate;
  }
  
  .floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
  }
  
  .icon-clock {
    color: var(--color-pink);
  }
  
  /* Features Section */
  .features {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f0f7ff, #f5e6ff);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    z-index: -1;
    border-radius: calc(var(--radius) + 5px);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-card:hover::before {
    opacity: 1;
    animation: glowing 20s linear infinite;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg {
    color: white;
  }
  
  .pink {
    background: linear-gradient(to right, var(--color-pink), #ff8acf);
  }
  
  .blue {
    background: linear-gradient(to right, var(--color-blue), #77bef5);
  }
  
  .green {
    background: linear-gradient(to right, var(--color-green), #71e5a9);
  }
  
  .feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  /* About Section */
  .about {
    padding: 5rem 0;
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image {
    position: relative;
  }
  
  .image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-blue);
    bottom: -20px;
    right: -20px;
    border-radius: var(--radius);
    z-index: -1;
  }
  
  .about-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .stat:nth-child(1) .stat-number {
    background: linear-gradient(to right, var(--color-pink), #ff8acf);
  }
  
  .stat:nth-child(2) .stat-number {
    background: linear-gradient(to right, var(--color-blue), #77bef5);
  }
  
  /* Menu Section */
  .menu {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f5e6ff, #ffe6f2);
  }
  
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .menu-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .menu-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    z-index: -1;
    border-radius: calc(var(--radius) + 5px);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .menu-card:hover::before {
    opacity: 1;
    animation: glowing 20s linear infinite;
  }
  
  .menu-image {
    height: 200px;
    overflow: hidden;
  }
  
  .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .menu-card:hover .menu-image img {
    transform: scale(1.1);
  }
  
  .menu-content {
    padding: 1.5rem;
  }
  
  .menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .menu-title h3 {
    margin-bottom: 0;
  }
  
  .menu-price {
    color: var(--color-pink);
    font-weight: bold;
    font-size: 1.125rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background-color: white;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    z-index: -1;
    border-radius: calc(var(--radius) + 5px);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .testimonial-card:hover::before {
    opacity: 1;
    animation: glowing 20s linear infinite;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .stars {
    display: flex;
    color: #ffc107;
    margin-top: 0.25rem;
  }
  
  .star {
    margin-right: 0.25rem;
  }
  
  .star.empty {
    color: #e0e0e0;
  }
  
  .testimonial-text {
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 0;
  }
  
  /* Location Section */
  .location {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffe6f2, #e6f5ff);
  }
  
  .location-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .info-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .info-card h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .info-item svg {
    color: var(--color-pink);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .info-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  
  .social-media h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
  }
  
  .facebook {
    background: linear-gradient(to right, var(--color-pink), #ff8acf);
  }
  
  .instagram {
    background: linear-gradient(to right, var(--color-purple), #b27ad4);
  }
  
  .twitter {
    background: linear-gradient(to right, var(--color-blue), #77bef5);
  }
  
  .map-container {
    flex: 1;
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .map-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    z-index: -1;
    border-radius: calc(var(--radius) + 5px);
    filter: blur(8px);
    opacity: 1;
    animation: glowing 20s linear infinite;
  }
  
  /* CTA Section */
  .cta {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--color-pink), #9553e5, var(--color-blue));
    color: white;
  }
  
  .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Footer */
  .footer {
    background-color: #4a235a;
    color: #e1bcff;
    padding: 5rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-info {
    max-width: 300px;
  }
  
  .footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-pink), #9553e5, var(--color-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social-icon {
    color: #e1bcff;
    transition: color 0.3s ease;
  }
  
  .footer-social-icon:hover {
    color: white;
  }
  
  .footer-links h3,
  .footer-hours h3,
  .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .footer-links ul,
  .contact-list {
    list-style: none;
  }
  
  .footer-links ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links ul li a {
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: white;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }
  
  .contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-list li svg {
    margin-right: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(225, 188, 255, 0.2);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes rotate {
    100% {
      transform: rotate(1turn);
    }
  }
  
  @keyframes pulseSlow {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.6;
    }
    100% {
      transform: scale(1);
      opacity: 0.8;
    }
  }
  
  @keyframes floatUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes glowing {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 4rem;
    }
    
    .desktop-menu {
      display: flex;
    }
    
    .mobile-menu-button {
      display: none;
    }
    
    .hero-container {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-content {
      width: 50%;
    }
    
    .hero-image {
      width: 50%;
    }
    
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .about-container {
      flex-direction: row;
      align-items: center;
    }
    
    .about-image {
      width: 50%;
      padding-right: 2rem;
    }
    
    .about-content {
      width: 50%;
    }
    
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .location-container {
      flex-direction: row;
    }
    
    .contact-info {
      width: 50%;
      padding-right: 2rem;
    }
    
    .map-container {
      width: 50%;
      height: 400px;
    }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 2rem;
    }
  }
  
  @media (min-width: 992px) {
    .menu-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
  }