﻿:root {
    --primary: #1a1f6d;
    --primary-light: #2a307d;
    --primary-dark: #141856;
    --text-primary: #333;
    --text-secondary: #666;
    --border-color: #e2e2e2;
    --success: #22c55e;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --border-radius: 0px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--gray-100);
    color: var(--text-primary);
    line-height: 1.5;
    /*min-height: 100vh;*/
    min-height: 91vh;
    min-height: 90vh;
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.half-container1 {
    width: 100%;
    max-width: 800px;
}

.image-container1 {
    width: 100%;
    height: auto;
}

.image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

.content-container1 {
    padding: 2rem;
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.event-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.image-icon {
    width: 64px;
    height: 64px;
}

.button {
    background: var(--primary);
    color: var(--white);
    border: none;
    /*padding: 1rem 2rem;*/
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: var(--transition);
    height: 35px;
}

    .button:hover {
        background: var(--primary-dark);
    }

    .button:disabled {
        background: var(--text-secondary);
        cursor: not-allowed;
    }

.section-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
       /* padding: 0.75rem;*/
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 1rem;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 50px;
    }

@media (max-width: 768px) {
    .content-container1 {
        padding: 1rem;
    }

    .booking-card {
        padding: 1.5rem;
    }
}
