/* ========================================
   HERZENSTON BOOKING SYSTEM STYLES
   Modern Design 2025
======================================== */

/* ========================================
   CSS VARIABLES & GLOBAL STYLES
======================================== */
:root {
    /* Hauptfarbe - Rosé */
    --primary-color: #C4878F;

    /* Hauptfarbe hell - Sanftes Rosé */
    --primary-light: #D4A0A6;

    /* Sekundärfarbe - Mittleres Weinrot */
    --secondary-color: #9B3A44;

    /* Akzentfarbe - Zartes Blush */
    --accent-color: #F5D5D0;

    /* Heading-Farbe - Weinrot */
    --hztrotH-color: #71141e;

    /* Heading-Farbe dunkel - Tiefes Weinrot */
    --hztrotH-dark: #4A0D14;

    /* Dunkel - Warmes Dunkelbraun */
    --dark: #3D2E28;

    /* Hell - Cremeweiß */
    --light: #FFF8F5;

    --bs-heading-color: #71141e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

h1{
    color:var(--hztrotH-color);
    font-family: 'Dancing Script', cursive;
}
h2{
    color:var(--hztrotH-color);
    font-family: 'Dancing Script', cursive;
}
h3{
    color:var(--hztrotH-color);
    font-family: 'Dancing Script', cursive;
}
h4{
    color:var(--hztrotH-color);
    font-family: 'Dancing Script', cursive;
}
h5{
    color:var(--hztrotH-color);
    font-family: 'Dancing Script', cursive;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header-glass {
    background: rgba(249, 246, 242, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 135, 143, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.head_logo {
    max-height: 80px;
    transition: transform 0.3s ease;
}

.head_logo:hover {
    transform: scale(1.05);
}

.logo-sub {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.header-mobile-row {
    padding: 0.5rem 0;
    transition: padding 0.3s ease;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0;
    }

    .navbar .container-fluid {
        padding: 0;
    }
}

.logo-sub-scrollable {
    transition: opacity 0.3s ease, max-width 0.3s ease, font-size 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
    opacity: 1;
}

.header-scrolled .logo-sub-scrollable {
    opacity: 0;
    max-width: 0;
}

.header-scrolled .header-mobile-row {
    padding: 0.2rem 0;
}


.nav-modern {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.nav-modern a {
    padding: 0.6rem 1.25rem;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
}

.nav-modern a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.nav-modern a:hover::before {
    width: 200%;
    height: 200%;
}

.nav-modern a:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

.nav-modern a.active {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 135, 143, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(196, 135, 143, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.navbar-toggler-mobile:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(196, 135, 143, 0.25);
}

.navbar-toggler-mobile .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(196, 135, 143, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 100%;
}

/* ========================================
   BUTTONS
======================================== */

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 135, 143, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 135, 143, 0.4);
    color: white;
}

.btn-primary-modern.w-100 {
    width: 100%;
    text-align: center;
}

.btn-primary-modern.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary-modern {
    background: white;
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-modern:hover {
    background: var(--accent-color);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
======================================== */
.footer-modern {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-color) 100%);
    color: var(--light);
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: white;
}

/* ========================================
   INDEX PAGE - EVENT CARDS
======================================== */
.booking-hero {
    padding: 2rem 0;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    color: var(--secondary-color);
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--hztrotH-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    color: var(--hztrotH-color);
    margin-bottom: 1rem;
}

.alert-modern {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
}

.alert-warning {
    border-color: #ffc107;
}

.event-card-mobile {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.event-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.event-date {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hztrotH-color);
    margin: 0 0 0.5rem 0;
}

.event-time {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-open {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

.event-card-body {
    padding: 1.25rem;
}

.event-info-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.event-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.event-info-item i {
    font-size: 1.5rem;
    color: var(--hztrotH-color);
}

.event-info-label {
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.event-info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-card-top {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.event-date-box {
    color: white;
}

.event-date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.status-badge-desktop {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.event-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hztrotH-color);
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: auto;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.event-detail-item i {
    color: var(--hztrotH-color);
    font-size: 1.1rem;
}

.empty-state {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================
   BOOKING FORM - PROGRESS & SECTIONS
======================================== */
.booking-progress-bar {
    background: white;
    padding: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.progress-step.completed .step-circle {
    background: var(--primary-color);
    color: white;
    animation: scaleIn 0.5s ease forwards;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(196, 135, 143, 0.3);
}

.step-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--dark);
    font-weight: 600;
}

.progress-connector {
    width: 60px;
    height: 3px;
    background: #e9ecef;
    border-radius: 2px;
}

.progress-connector.active,
.progress-connector.completed {
    background: var(--primary-color);
}

.progress-connector.completed {
    animation: slideIn 0.5s ease forwards;
}

.event-info-header {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
}

.meta-item i {
    color: var(--hztrotH-color);
    font-size: 1.1rem;
}

.alert-error {
    border-left: 4px solid #dc3545;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.alert-icon {
    font-size: 2rem;
    color: #dc3545;
}

.alert-content {
    flex-grow: 1;
}

.alert-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.alert-content ul {
    margin: 0;
    padding-left: 1.25rem;
}

.form-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
}

.section-icon {
    font-size: 1.75rem;
    opacity: 0.9;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.section-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.section-content {
    padding: 2rem;
}

.form-label-modern {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.required {
    color: #dc3545;
}

.form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 135, 143, 0.1);
}

.form-control-modern.is-invalid {
    border-color: #dc3545;
}

.form-control-modern.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-hint i {
    color: var(--hztrotH-color);
    margin-top: 0.125rem;
}

.form-actions {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* ========================================
   SUCCESS PAGE
======================================== */
.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    animation: fadeInScale 0.6s ease forwards;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: white;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary-color);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--primary-color);
    stroke-width: 4;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.success-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hztrotH-color);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.event-details-card,
.next-steps-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.event-details-card {
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.next-steps-card {
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.detail-header,
.steps-header {
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.detail-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.steps-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.detail-header i,
.steps-header i {
    font-size: 1.5rem;
}

.detail-header h2,
.steps-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.detail-content,
.steps-content {
    padding: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.detail-label i {
    color: var(--hztrotH-color);
}

.detail-value {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hztrotH-color);
    margin-bottom: 0.5rem;
}

.step-text p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    text-align: left;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.info-box i {
    font-size: 2rem;
    color: #856404;
    flex-shrink: 0;
}

.info-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.7s backwards;
}

.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.share-text {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-facebook {
    background: #1877f2;
}

.share-whatsapp {
    background: #25d366;
}

.share-email {
    background: var(--secondary-color);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px var(--primary-color);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .info-badge {
        margin-top: 1rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-modern {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .nav-modern a {
        width: 100%;
        text-align: center;
    }
    
    .head_logo {
        max-height: 55px;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .booking-hero {
        padding: 1rem 0;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .detail-value {
        text-align: left;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a {
        width: 100%;
    }

    .progress-connector {
        display: none;
    }

    .progress-steps {
        justify-content: space-around;
        width: 100%;
    }

    .section-header {
        padding: 1.25rem 1.5rem;
    }

    .section-content {
        padding: 1.5rem;
    }

    .event-card-top {
        padding: 1.25rem;
    }

    .event-date-day {
        font-size: 2rem;
    }

    .event-info-header {
        padding: 1.5rem;
    }

    .form-actions {
        padding: 1.5rem;
    }

    .btn-primary-modern.btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .alert-modern {
        padding: 1.25rem;
    }

    .step-item {
        gap: 1rem;
    }

    .share-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .event-date-box {
        text-align: center;
    }

    .event-date-day {
        font-size: 1.75rem;
    }

    .event-date-month {
        font-size: 0.8rem;
    }

    .status-badge-desktop {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .event-card-title {
        font-size: 1.1rem;
    }

    .success-checkmark {
        width: 100px;
        height: 100px;
    }

    .checkmark {
        width: 100px;
        height: 100px;
    }
}