/* RESERVATION CREATE PAGE STYLES */
.reservation-create-container {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.reservation-create-hero {
    background: linear-gradient(135deg, #2b392c 0%, #354f3a 100%);
    color: #f5f5dc;
    padding: 120px 0 40px 0;
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-create-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* CARD STYLES */
.reservation-type-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

    .reservation-type-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.6);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .reservation-type-card .card-header {
        background: rgba(212, 175, 55, 0.15);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 1.5rem;
    }

    .reservation-type-card .card-title {
        color: #f5f5dc;
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .reservation-type-card .card-body {
        padding: 1.5rem;
        color: #e0e0e0;
    }

    .reservation-type-card .card-text {
        color: #d4d4d4;
        font-size: 1rem;
        line-height: 1.5;
    }

    .reservation-type-card .card-footer {
        background: transparent;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        padding: 1.5rem;
    }

/* BUTTON STYLES */
.btn-reservation-type {
    background: linear-gradient(135deg, #d4af37 0%, #b5860b 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .btn-reservation-type:hover {
        background: linear-gradient(135deg, #e6c158 0%, #c9970c 100%);
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

/* EVENT CARDS */
.event-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 2px solid rgba(66, 133, 244, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

    .event-card:hover {
        transform: translateY(-3px);
        border-color: rgba(66, 133, 244, 0.6);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .event-card .card-header {
        background: rgba(66, 133, 244, 0.15);
        border-bottom: 1px solid rgba(66, 133, 244, 0.2);
        padding: 1.25rem;
    }

    .event-card .card-title {
        color: #f5f5dc;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .event-card .card-body {
        padding: 1.25rem;
        color: #e0e0e0;
    }

    .event-card .card-footer {
        background: transparent;
        border-top: 1px solid rgba(66, 133, 244, 0.1);
        padding: 1.25rem;
    }

.btn-event {
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .btn-event:hover {
        background: linear-gradient(135deg, #5394f5 0%, #4274e0 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
    }

/* ALERT STYLES */
.alert-reservation {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border: 2px solid rgba(66, 133, 244, 0.4);
    border-radius: 12px;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .alert-reservation.alert-info {
        border-color: rgba(66, 133, 244, 0.4);
    }

    .alert-reservation.alert-danger {
        border-color: rgba(220, 53, 69, 0.4);
    }

/* SECTION HEADERS */
.section-header {
    color: #f5f5dc;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
/* HEADER - KONZISTENTAN SA OSTALIM STRANICAMA */
.reservation-create-hero {
    background: linear-gradient(135deg, var(--bottle-green) 0%, var(--hunter-green) 100%);
    color: var(--cream);
    padding: 150px 0 30px 0;
    text-align: center;
    margin-bottom: 3rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #b5860b 100%);
    border-radius: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .reservation-create-hero {
        padding: 100px 0 30px 0;
    }

    .reservation-create-title {
        font-size: 2rem;
    }

    .reservation-type-card,
    .event-card {
        margin-bottom: 1.5rem;
    }

    .section-header {
        font-size: 1.5rem;
    }

    .reservation-type-card .card-title,
    .event-card .card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .reservation-create-hero {
        padding: 80px 0 20px 0;
    }

    .reservation-create-title {
        font-size: 1.6rem;
    }

    .reservation-type-card .card-body,
    .event-card .card-body {
        padding: 1rem;
    }

    .btn-reservation-type,
    .btn-event {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
/*CREATEREGULAR RESERVATION STYLES*/
/* REGULAR RESERVATION STYLES */
.reservation-regular-container {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.reservation-regular-hero {
    background: linear-gradient(135deg, var(--bottle-green) 0%, var(--hunter-green) 100%);
    color: #f5f5dc;
    padding: 150px 0 30px 0;
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-regular-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reservation-regular-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* FORM STYLES */
.reservation-form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.reservation-form {
    color: #f5f5dc;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control-label {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #f5f5dc;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        background: linear-gradient(135deg, #3d3d3d 0%, #4d4d4d 100%);
        border-color: #d4af37;
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        color: #f5f5dc;
    }

    .form-control::placeholder {
        color: #b8b8b8;
    }

    .form-control option {
        background: #2d2d2d;
        color: #f5f5dc;
    }

/* BUTTON STYLES */
.btn-reservation-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b5860b 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

    .btn-reservation-primary:hover {
        background: linear-gradient(135deg, #e6c158 0%, #c9970c 100%);
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

.btn-reservation-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #f5f5dc;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-reservation-secondary:hover {
        background: linear-gradient(135deg, #7a8288 0%, #687077 100%);
        color: #f5f5dc;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    }

/* ALERT STYLES */
.alert-reservation {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    border: 2px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .alert-reservation .btn-close {
        filter: invert(1);
    }

/* TABLE SELECTION STYLES */
.table-selection-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-size: 0.9rem;
}

/* BILLIARD SPECIFIC STYLES */
.billiard-highlight {
    border-color: rgba(255, 193, 7, 0.4) !important;
}

    .billiard-highlight .form-control-label {
        color: #ffc107;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .reservation-regular-hero {
        padding: 120px 0 40px 0;
    }

    .reservation-regular-title {
        font-size: 1.8rem;
    }

    .reservation-form-container {
        padding: 2rem;
        margin: 0 -1rem;
        border-radius: 12px;
    }

    .btn-reservation-primary,
    .btn-reservation-secondary {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reservation-regular-hero {
        padding: 100px 0 30px 0;
    }

    .reservation-regular-title {
        font-size: 1.6rem;
    }

    .reservation-form-container {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .form-control {
        padding: 0.6rem 0.8rem;
    }
}
