
/*------------------------------------------------------------------------------------------*/
/* 0. Rolf Styles */
/*------------------------------------------------------------------------------------------*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
            /* background: linear-gradient(135deg, #2c5f2d 0%, #1e4020 100%);
            background: linear-gradient(135deg, #2c5f2d 0%, #0c8daeff 100%);
            background: linear-gradient(135deg, #244e25 0%, #097093 100%);  */
            background: linear-gradient(135deg, #244e25 0%, #06546a 100%);          
            

            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            padding: 50px 40px;
            max-width: 600px;
            width: 100%;
            /* margin: 0 auto 100px auto;   Horizontal zentriert, 100px Abstand unten */
        }
        
        .club-name {
            color: #0c8daeff;
            font-weight: 650;
            font-size: 1.0em;
            margin-bottom: 0.2em;
            text-align: right;
            text-decoration: none;
        }

        .app-name-formatted {color: darkgray;}

        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .header h1 {
            color: #2c5f2d;
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .header h2 {
            color: #666;
            font-size: 14px;
        }

        .header h3 {
            color: #2c5f2d;
            font-size: 16px;
            margin-top: 8px;
        }

        .header-link {
            text-decoration: none;
            color: inherit;
        }   

        .header-line {
            display: flex;
            justify-content: space-between;
            /* links/rechts verteilen */
            align-items: center;
        }

        .garni-domain a {
            text-align: left;
            color: #0c8daeff;
            font-weight: 650;
            font-size: 1.0em;
            margin-bottom: 0.2em;            
            text-decoration: none;
        }

        
        .divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, #2c5f2d, transparent);
            margin: 15px 0;
        }

        .question {
            font-size: 16px;
            font-weight: 600;
            color: #2c5f2d;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .form-section {
            margin-bottom: 35px;
        }
        
        .form-section h3 {
            color: #2c5f2d;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .datenschutzimpressum h1 {
            color: #2c5f2d;
            font-size: 20px;
            margin-bottom: 10px;
            margin-top: 10px;
        }
        
        .datenschutzimpressum h2 {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
            margin-top: 10px;
        }

        label {
            display: block;
            margin-bottom: 2px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }
        
        select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            background: white;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        select:hover {
            border-color: #2c5f2d;
        }
        
        select:focus {
            outline: none;
            border-color: #2c5f2d;
            box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
        }
        
        .button-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 40px;
        }
        
        /* größere Buttons für bessere Touch-Bedienung */
        button, a.btn {
            padding: 14px 24px;
            min-height: 48px;
            font-size: 16px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-birdiebook {
            background: #4a7c59;
            color: white;
        }

        .btn-golfplatz {
            background: linear-gradient(90deg,#1976d2,#1a73b8);
            color: #fff;
            border: none;
            box-shadow: 0 6px 18px rgba(26,115,184,0.18);
        }

        .btn-golfplatz:hover {
            background: linear-gradient(90deg,#155fa8,#196ab0);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(25,106,176,0.22);
        }
        
        .btn-birdiebook:hover {
            background: #2c5f2d;
            box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-maengel {
            background: #0c8daeff;
            color: white;
        }
        
        .btn-maengel:hover {
            background: #0c8daeff;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
            transform: translateY(-2px);
        }
        .btn-next {
                grid-column: auto;
            }
        
        .btn-next {
            background: #0c8daeff;            
            color: white;
            /* grid-column: 1 / -1; */
        }
        .btn-next:hover {
            background: #2c5f2d;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-back {
            background: #e0e0e0;
            color: #333;
        }
        
        .btn-back:hover {
            background: #d0d0d0;
        }

        .btn-submit {
            background: #0c8daeff;
            color: white;
            /* grid-column: 1 / -1; */
        }

        .btn-submit:hover {
            background: #2c5f2d;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
            transform: translateY(-2px);
        }     

        .info-box {
            background: #f0f8f0;
            border-left: 4px solid #2c5f2d;
            padding: 15px;
            margin-top: 30px;
            border-radius: 4px;
            color: #333;
            font-size: 14px;
            text-align: left;
        }
        
        .info-box strong {
            color: #2c5f2d;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus {
            outline: none;
            border-color: #2c5f2d;
            box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .summary-box {
            background: #f0f8f0;
            border-left: 4px solid #2c5f2d;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 4px;
        }

        .summary-box h3 {
            color: #2c5f2d;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .summary-box p {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .summary-box a {
            font-size: 12px;
            color: #2c5f2d;
            text-decoration: none;
        }

        .error {
            background-color: #ffebee;
            border: 1px solid #ef5350;
            color: #c62828;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        /* disabled state for buttons */
        .disabled {
            opacity: 0.55;
            pointer-events: none;
            cursor: default;
            filter: grayscale(20%);
        }

        .form-section h3 {
            color: #2c5f2d;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }

        .checkbox-group {
            margin-bottom: 20px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            background: #f9f9f9;
        }
        
        .checkbox-label:hover {
            border-color: #2c5f2d;
            background: #f0f8f0;
        }
        
        .checkbox-label input[type="checkbox"] {
            margin-right: 12px;
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #2c5f2d;
        }
        
        .checkbox-label input[type="checkbox"]:checked + span {
            color: #2c5f2d;
            font-weight: 600;
        }
        
        .checkbox-label span {
            color: #333;
            font-size: 14px;
        }

        .success-section {
            text-align: center;
            padding: 30px 0;
        }

        .success-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .success-section h2 {
            color: #2e7d32;
            margin-bottom: 15px;
        }

        .success-section p {
            color: #666;
            margin-bottom: 20px;
        }

        .fixed-footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background: whitesmoke;
            /* Hintergrundfarbe nach Wunsch */
            color: #333;
            /* Textfarbe nach Wunsch */
            text-align: right;
            /* Zentrierter Text */
            font-size: 0.9em;
            /* Schriftgröße */
            padding: 10px 15px;
            /* Innenabstand oben/unten */
            z-index: 999;
            /* Bleibt oben, falls andere Elemente überlappen */
        }
        
        /* Mobile-Optimierung */
        @media (max-width: 600px) {
            .container {
                padding: 15px 15px;
                margin-top: 0px; /* Oder 0 */
            }
            
            .header h1 {
                font-size: 18px;
            }
            
            .button-group {
                grid-template-columns: 1fr;
            }
            
            button {
                padding: 14px 20px;
                font-size: 15px;
            }
            .fixed-footer {
                font-size: 0.7em;
                font-weight: normal;
                padding: 8px 12px;
                }
        }