/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
  }
  
  /* Menu Toggle Button */
  .menu-toggle {
    position: fixed;
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    width: clamp(30px, 5vw, 40px);
    height: clamp(24px, 4vw, 32px);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(calc(clamp(24px, 4vw, 32px) / 2 - 1.5px)) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(calc(-1 * (clamp(24px, 4vw, 32px) / 2 - 1.5px))) rotate(-45deg);
  }
  
  /* Fullscreen Menu */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fe6d11;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  .menu.open {
    transform: translateY(0);
  }
  
  .menu-list {
    list-style: none;
    text-align: center;
  }
  
  .menu-list li {
    margin: clamp(0.5rem, 2vw, 1rem) 0;
  }
  
  .menu-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 10vw, 6rem);
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .menu-link:hover,
  .menu-link.active {
    color: #fff;
  }
  
  /* Main Content */
  .main-content {
    min-height: 100vh;
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  }
  
  /* Page Header */
  .page-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding-top: 2rem;
  }
  
  .page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  
  .page-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fe6d11;
  }
  
  .contact-content {
    max-width: 600px; /* Šířka obsahu, aby nebyl moc roztažený */
    margin: 0 auto;  /* Horizontální centrování celého bloku */
    display: flex;
    flex-direction: column; /* Položky (info a formulář) pod sebou */
    align-items: center;    /* Horizontální centrování položek uvnitř */
    gap: 3rem;              /* Mezera mezi kontakty a formulářem */
}

/* Oprava: Odstranění gridu, který způsoboval posun doleva na PC */
@media (min-width: 768px) {
    .contact-content {
        display: flex;      /* Zůstane flex, aby to bylo pod sebou a uprostřed */
        align-items: center;
        width: 100%;
    }
    
    .contact-form {
        width: 100%;        /* Aby formulář nebyl moc úzký */
    }
}
  
  /* Contact Info */
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrování textů v info bloku */
    text-align: center;
}
  .contact-item {
    text-align: center;
    width: 100%;
    }
  
  .contact-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #fe6d11;
    margin-bottom: 0.5rem;
  }
  
  .contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: color 0.3s ease;
  }
  
  .contact-item a:hover {
    color: #fe6d11;
  }
  
  .contact-item p {
    color: #ccc;
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centrování tlačítek */
    gap: 1rem;
    }
  
  .social-link {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: #fe6d11;
    border-color: #fe6d11;
    color: #000;
  }
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    letter-spacing: 0.05em;
  }
  
  .form-group input,
  .form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #fe6d11;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #666;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .btn-submit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    background-color: #fe6d11;
    border: 2px solid #fe6d11;
    color: #000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: transparent;
    color: #fe6d11;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .contact-info {
      text-align: center;
    }
    
    .social-links {
      justify-content: center;
    }
  }
  