html{
    padding: 0;
    margin: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
    font-family: Arial, sans-serif;
}
.calendar-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.calendar {
    width: 320px;
    background: white;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* header */
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.btn {
    background: transparent;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
}
.btn:hover {
    background: #f1f1f1;
}

.month-title {
    font-weight: bold;
    font-size: 17px;
}

svg {
    stroke: #333;
}

/* Desktop (month) layout */
.weekdays,
.days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    text-align: center;
}

.weekdays {
    color: #6a6a6a;
    font-size: 13px;
    margin-bottom: 6px;
}

.day {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin: 2px 0;
}
.day:hover {
    background: #f3f4f6;
}
.today {
    background: #e6e8eb;
    font-weight: bold;
}
.selected {
    outline: 2px solid #092241;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: color-mix(in srgb, #092241 20%, transparent);
}
.empty {
    pointer-events: none;
    color: transparent;
}

/* ------------------ MOBILE (WEEK VIEW) ------------------ */
@media (max-width: 950px) {
    .calendar {
        width: 100%;
        margin: 0 auto;
        max-width: 390px;
    }

    /* Hide month grid on mobile */
    .weekdays,
    .days {
        display: none !important;
    }

    .mobile-weekdays,
    .mobile-week {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        font-size: 15px;
    }

    .mobile-weekdays {
        color: #6a6a6a;
        margin-bottom: 6px;
    }

    .mobile-day {
        padding: 10px 0;
        border-radius: 8px;
        font-size: 18px;
    }

    .mobile-selected {
        outline: 2px solid #092241;
        border-radius: 8px;
        box-sizing: border-box;
        background-color: color-mix(in srgb, #092241 20%, transparent);
    }

    .today {
        background: #e6e8eb;
        font-weight: bold;
    }
}

/* Ticket info */
#ticketInfo {
    font-size: 16px;
    font-weight: bold;
}
.ticket{
    border: 1px solid rgb(219, 219, 219);
    border-radius: 12px;
    width: 500px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.buy{
    font-size: 20px;
    margin-top: 80px;
    padding: 10px;
    font-weight: 700;
    color: white;
    background-color: #092241;
    border: none;
    border-radius: 8px;
}
.buy:hover{
    cursor: pointer;
    background-color: #0e3769;
}
.price{
    font-size: 14px;
    font-weight: 700;
}
@media (max-width:950px) {
    .container{
        flex-direction: column;
    }
}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding: 0;
        }

        /* Header Styles */
        .site-header {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .header-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-item {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-item:hover {
            color: #0073e6;
        }

        .nav-divider {
            color: #ddd;
        }

        .promo-code {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .promo-code .nav-item {
            color: #0073e6;
        }

        .copyright {
            color: #666;
            font-size: 12px;
        }

        /* Main Content Styles */
        .main-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
            padding: 20px;
        }
        
        .payment-container {
            background-color: white;
            width: 100%;
            max-width: 600px;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .payment-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .payment-header h1 {
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus, select:focus {
            border-color: #3498db;
            outline: none;
        }
        
        .card-details {
            display: flex;
            gap: 15px;
        }
        
        .expiration {
            flex: 2;
        }
        
        .cvv {
            flex: 1;
        }
        
        .name-group {
            display: flex;
            gap: 15px;
        }
        
        .name-group > div {
            flex: 1;
        }
        
        .phone-group {
            display: flex;
        }
        
        .country-code {
            width: 100px;
            margin-right: 10px;
        }
        
        .phone-number {
            flex: 1;
        }
        
        .button-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        
        .submit-btn {
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            flex: 2;
        }
        
        .submit-btn:hover {
            background-color: #2980b9;
        }
        
        .back-btn {
            background-color: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            flex: 1;
        }
        
        .back-btn:hover {
            background-color: #e9ecef;
        }
        
        .footer {
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #0073e6;
            line-height: 1.5;
        }
        
        .footer a {
            color: #0073e6;
            text-decoration: none;
        }
        
        .error {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        
        input.error-field, select.error-field {
            border-color: #e74c3c;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-left, .nav-right {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .nav-divider {
                display: none;
            }
            .logo{
                height: 40px;
                width: auto;
            }
            .titles{
                font-size: 18px;
            }
            .nav-menu{
                align-items: start;
            }
            .site-header{
                padding: 7px;
            }
        }
        
        @media (max-width: 480px) {
            .card-details, .name-group, .button-group {
                flex-direction: column;
                gap: 10px;
            }
            
            .payment-container {
                padding: 20px;
            }
            
            .header-container {
                padding: 0 15px;
            }
            
            .nav-item {
                font-size: 13px;
            }
        }

    .p1{color: white; background-color: #7388a4; font-weight: 400; font-size: 24px; max-width: 410px; padding: 10px;}
   .p2{color: white; background-color: #092241; font-weight: 400; font-size: 40px; max-width: 430px; padding: 20px}

@media (max-width:600px) {
    .hero{
        max-height: 400px;
    }
   .p1{font-size: 18px; max-width: 350px; padding: 10px;}
   .p2{font-size: 34px; max-width: 380px; padding: 20px;}
   .ticket{
    max-width: 320px !important; 
   }
   .buy{
    font-size: 16px;
    width: 100px;
   }
}