/* Page styles for "Lift Off! Tummy Time Workshop - Family Tree Health" — extracted from events/tummy-time-workshop.html */

        .workshop-header {
            background: url('../../img/paul_with_baby.jpg') no-repeat center center/cover;
            padding: 200px 20px 100px;
            color: #fff;
            position: relative;
        }
        
        .workshop-header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workshop-subheading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f4f4f4;
        }

        .workshop-header h1 {
            margin: 0 0 30px;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-weight: 700;
        }

        .btn-green {
            background-color: #8cc63f;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .btn-green:hover {
            background-color: #7ab32e;
        }

        .workshop-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .workshop-text h2 {
            color: #8cc63f;
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .workshop-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        .workshop-text ul {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .workshop-image-box img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            object-fit: cover;
        }

        .workshop-details {
            background: #f5f8f5;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .workshop-details h3 {
            color: #0d2f3b;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .workshop-details p {
            margin-bottom: 10px;
        }

        .workshop-details strong {
            color: #0d2f3b;
        }

        /* Booking Form Styles */
        .booking-form-section {
            background: #0d2f3b;
            padding: 80px 20px;
            color: #fff;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .booking-container h2 {
            color: #8cc63f;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .booking-container p {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #aebbc1;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            text-align: left;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background-color: #8cc63f;
            color: #fff;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            grid-column: 1 / -1;
            justify-self: center;
        }

        .btn-submit:hover {
            background-color: #7ab32e;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .workshop-section {
                grid-template-columns: 1fr;
            }
            .booking-form {
                grid-template-columns: 1fr;
            }
            .workshop-header h1 {
                font-size: 2.5rem;
            }
            .workshop-image-box {
                display: none !important;
            }
        }
