* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}
.logo::before {
    content: "🇮🇳";
    margin-right: 0.5rem;
    font-size: 1.8rem;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #e74c3c;
}
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sign-in {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}
.sign-up {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}
.banner-sidebar-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}
.event-header {
    /* background: white; */
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}
.banner-image {
    width: 100%;
    /* height: 100%; */
    object-fit: fill;
    object-position: right;
    display: block;
}

@media (min-width: 480px) {
    .banner-image {
        height: auto;
    }
}
@media (max-width: 768px) {
    .event-banner {
        height: 370px;
    }
}
@media (max-width: 480px) {
    .event-banner {
        height: 280px;
    }
}
.sidebar {
    flex: 0 0 30%;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}
.event-info-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    width: 15px;
    margin-right: 1rem;
    text-align: start;
    font-size: 20px;
    color: #333;
}
.price-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}
.availability {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
}
.book-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: oklch(70.5% 0.213 47.604);
    border: none;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}
.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.7s ease-in-out;
}
.book-btn:hover::before {
    left: 125%;
}
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}
@media (max-width: 480px) {
    .main-content {
        margin: 0%;
    }
}
.event-details {
    padding-top: 30px;
}
.event-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 20px;
}
.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}
input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e74c3c;
}
.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100% !important;
    margin-top: 1rem;
    text-decoration: none;
    margin-top: 10px;
}
.submit-btn:hover {
    background: #c0392b;
}
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
@media (max-width: 768px) {
    .banner-sidebar-container {
        flex-direction: column;
        padding: 0%;
        margin: 0%;
    }
    .event-header {
        flex: 0 0 100%;
    }
    .sidebar {
        flex: 0 0 100%;
        /* margin-top: 2rem; */
    }
    .nav-links {
        display: none;
    }
    .banner-content h2 {
        font-size: 2rem;
    }
}
.message-popup {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 80px;
}
.message {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 500px;
    height: 60px;
}
.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.message.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.btn-link {
    padding: 6px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    color: #ffff;
}
.form-enhanced .input-icon {
    position: relative;
}
.form-enhanced .input-icon input {
    padding-left: 40px;
}
.form-enhanced .input-icon i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
}
.form-enhanced .qr-container {
    display: none;
    text-align: center;
    margin-top: 20px;
}
.form-enhanced .qr-container img {
    max-width: 200px;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 10px;
    background: #f9f9f9;
}
.balloons {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
}
.balloon {
    width: 50px;
    height: 70px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    animation: float 6s ease-in-out forwards;
}
@keyframes float {
    0% {bottom: -100px; opacity: 1;}
    100% {bottom: 100%; opacity: 0;}
}