@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source "../**/*.blade.php";
@source "../**/*.js";
@source "../**/*.vue";

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}
    :root {
      --bg: #FFFBEF;
      --primary: #F4D03F;
      --text: #2E4053;
      --accent: #5DADE2;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      background: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    header h1 {
      font-size: 1.5rem;
      font-weight: 600;
    }

    nav a {
      margin-left: 1.5rem;
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }

    nav a:hover { color: var(--accent); }

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

    .hero img {
      width: 100%;
      border-radius: 20px;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero button {
      margin-top: 1rem;
      padding: 0.8rem 1.5rem;
      border: none;
      background: var(--primary);
      border-radius: 999px;
      font-size: 1rem;
      cursor: pointer;
    }

    section {
      padding: 3rem 2rem;
    }

    section h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: white;
      padding: 1.5rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .card img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-bottom: 1rem;
      border-radius: 5px;
    }

    .hours {
      background: var(--primary);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      font-size: 1.2rem;
      max-width: 500px;
      margin: auto;
    }

    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 20px;
    }

    .contact {
      max-width: 700px;
      margin: auto;
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .contact p { margin-bottom: 0.8rem; }

    footer {
      text-align: center;
      padding: 2rem;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: #666;
    }
    #obrazek{
      height: 300px;
    }

    @media (max-width: 800px) {
      .hero, .about { grid-template-columns: 1fr; }

      
      #menuToggle { display: block !important; }


      nav {
      display: none;
      position: absolute;
      top: 70px;
      right: 20px;
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      }


      nav a {
      display: block;
      margin: 0.8rem 0;
      }


      nav.active {
      display: block;
      }
}

