* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #f7f7f7;
            padding-top: 200px;
            line-height: 1.5;
            color: #333;
        }

        /* Navigace */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            background: #535848;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 140px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .nav {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 2rem;
            padding-right: 3rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 23px;
            transition: color 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        .underline-hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 3px;
            width: 0;
            background-color: #f5d6a1;
            border-radius: 2px;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .underline-hover:hover a {
            color: #f5d6a1;
            transform: translateY(-3px);
        }

        /* Dropdown menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #535848;
            min-width: 180px;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 1000;
        }

        .dropdown-content li {
            list-style: none;
        }

        .dropdown-content a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: background 0.3s;
        }

        .dropdown-content a:hover {
            background-color: #6e7360;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .form-header {
            background: #86855e;
            text-align: center;
            padding: 30px 20px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .form-header h1 {
            font-size: 2rem;
            color: #ffffff;
            font-weight: normal;
            margin-bottom: 10px;
        }
        
        .form-content {
            padding: 30px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #535848;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            body {
                padding-top: 80px;
            }
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #555;
            font-weight: normal;
        }
        
        .required {
            color: #e74c3c;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.2s ease;
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="date"]:focus,
        input[type="number"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #b8651b;
        }
        
        textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        select {
            background: white;
            cursor: pointer;
        }
        
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
        }
        
        .checkbox-item input[type="checkbox"] {
            margin-right: 8px;
            width: auto;
        }
        
        .checkbox-item label {
            margin: 0;
            cursor: pointer;
            font-size: 14px;
        }
        
        .fa-solid, .fas {
            font-weight: 900;
            font-size: 20px;
            color: #86855e;

        }

        .fa-envelope:before {
            content: "\f0e0";
            margin-right: 8px;
        }

        .fa-phone-alt:before, .fa-phone-flip:before {
            content: "\f879";
            margin-right: 8px;
        }


        .file-upload {
            position: relative;
            display: inline-block;
            cursor: pointer;
            width: 100%;
        }
        
        .file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .file-upload-label {
            display: block;
            padding: 12px;
            border: 1px dashed #b8651b;
            border-radius: 4px;
            text-align: center;
            color: #b8651b;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .file-upload:hover .file-upload-label {
            background: rgba(184, 101, 27, 0.05);
        }
        
        .agreement {
            margin: 20px 0;
            font-size: 14px;
        }
        
        .agreement label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            margin: 0;
        }
        
        .agreement input[type="checkbox"] {
            margin-right: 10px;
            margin-top: 2px;
            width: auto;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px 30px;
            background: #86855e;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            background: #696842;
        }
        
        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .contact-info {
            background: #f9f9f9;
            padding: 25px;
            text-align: center;
            border-top: 1px solid #e0e0e0;
        }
        
        .contact-info h3 {
            color: #000000;
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: normal;
        }
        
        .contact-item {
            margin-bottom: 8px;
            color: #666;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .section-title {
            font-size: 16px;
            color: #333;
            margin-bottom: 15px;
            margin-top: 25px;
            font-weight: 600;
        }
        
        .section-title:first-of-type {
            margin-top: 0;
        }
        
        .note {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
            font-style: italic;
        }

        .custom-input {
            margin-top: 10px;
            display: none;
        }

        /* Nové styly pro veganské označení */
        .vegan-option {
            color: #2d5016;
            font-weight: 500;
        }

        .vegan-icon {
            color: #4CAF50;
            font-size: 16px;
            margin-left: 5px;
        }

        .gluten-info {
            background: #f0f8ff;
            border: 1px solid #b8d4f0;
            border-radius: 4px;
            padding: 15px;
            margin-top: 10px;
            font-size: 13px;
            color: #2c5aa0;
        }

        .gluten-info strong {
            color: #1a4480;
        }

        .section-divider {
            border-top: 2px solid #e8f5e8;
            margin: 20px 0;
            padding-top: 15px;
        }

        .vegan-section {
            background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
            border-left: 4px solid #4CAF50;
            padding: 15px;
            margin-top: 15px;
            border-radius: 0 8px 8px 0;
        }

        .vegan-section h4 {
            color: #2d5016;
            margin-bottom: 10px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .vegan-section h4 i {
            margin-right: 8px;
            color: #4CAF50;
        }

          /* Footer */
    footer {
      background-color: #000000;
      color: #ffff;
      padding: 60px 40px 30px;
      margin-top: 40px;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #ffff;
    }
    
    .footer-text {
      font-size: 0.95rem;
      opacity: 0.8;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .booking-icon {
        width: 30px;
        height: auto;
        vertical-align: middle;
        border-radius: 50%;
        align-items: center;
        transition: opacity 0.3s ease;
    }

    .booking-icon:hover {
        opacity: 0.8;
    }

    .instagram-icon {
        width: 37px;
        height: auto;
        vertical-align: middle;
        transition: opacity 0.3s ease;
    }

    .instagram-icon:hover {
        opacity: 0.8;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 1.2rem;
      transition: all 0.4s ease;
    }
    
    .social-icon:hover {
        background-color: #ffffff;
        color: #222;
        transform: translateY(-5px);
    }
    
    .footer-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffff;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: var(--text-light);
      opacity: 0.8;
      text-decoration: none;
      font-size: 0.95rem;
    }
    
    .footer-links a:hover {
      opacity: 1;
      color: var(--secondary-color);
      padding-left: 5px;
    }
    
    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    
    .copyright {
      font-size: 0.9rem;
      opacity: 0.7;
    }
    

    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #86855e;
      color: #ffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
      z-index: 999;
    }
    
    .back-to-top.show {
      opacity: 1;
      transform: translateY(0);
    }

.fa-chevron-up:before {
    content: "\f077";
    color: #ffff;
}