/* ============================================ */
/* MAMAGEHTTANZEN - KOMPLETTE STYLES           */
/* ALLE FARBEN ÜBER CSS-VARIABLEN              */
/* ============================================ */

/* ============================================ */
/* GRUNDLEGENDE STYLES                          */
/* ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
}

a {
    color: var(--text-link);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-link-hover);
}

/* ============================================ */
/* TYPOGRAPHIE                                  */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
}

.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }
.text-pink { color: var(--primary-pink) !important; }

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */

.navbar {
    background: var(--nav-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 20, 147, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--nav-brand) !important;
}

.brand-text {
    color: var(--nav-brand);
}

.brand-text .highlight {
    color: var(--primary-pink);
    background: var(--bg-soft);
    padding: 0 5px;
    border-radius: 5px;
}

.subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--nav-subtitle);
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 600;
    color: var(--nav-link) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nav-link-hover) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--nav-link-active) !important;
}

.nav-link.active::after {
    width: 80%;
}

.btn-admin {
    background: var(--btn-admin-bg) !important;
    color: var(--btn-admin-text) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
}

.btn-admin:hover {
    transform: scale(1.05);
    color: var(--btn-admin-text) !important;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn-pink {
    background: var(--btn-primary-bg);
    border: none;
    color: var(--btn-primary-text);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-pink);
}

.btn-pink:hover {
    background: var(--btn-primary-hover-bg);
    color: var(--btn-primary-hover-text);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.btn-pink:active {
    transform: translateY(0);
}

.btn-outline-pink {
    border: 2px solid var(--btn-outline-border);
    color: var(--btn-outline-text);
    background: transparent;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-text);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline-pink:active {
    transform: translateY(0);
}

.btn-success { background: var(--color-success) !important; border-color: var(--color-success) !important; }
.btn-danger { background: var(--color-danger) !important; border-color: var(--color-danger) !important; }
.btn-warning { background: var(--color-warning) !important; border-color: var(--color-warning) !important; color: var(--color-warning-dark) !important; }
.btn-info { background: var(--color-info) !important; border-color: var(--color-info) !important; }

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--bg-hero);
    overflow: hidden;
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--hero-badge-bg);
    color: var(--hero-badge-text);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--hero-title);
    margin: 20px 0;
    text-shadow: var(--shadow-hero);
}

.hero-title .highlight {
    color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.15);
    padding: 0 10px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--hero-subtitle);
    text-shadow: var(--shadow-hero);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--hero-text);
    max-width: 600px;
    margin: 20px auto;
    text-shadow: var(--shadow-hero);
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.section-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-pink);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 10px 0 5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================ */
/* EVENT CARDS                                  */
/* ============================================ */

.event-card {
    position: relative;
    background: var(--event-card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--event-card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--event-card-hover-shadow);
}

/* ============================================ */
/* EVENT DATE BADGE                             */
/* ============================================ */

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.badge-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--date-badge-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px 16px;
    min-width: 75px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--date-badge-border);
    transition: transform 0.3s ease;
}

.event-card:hover .badge-date {
    transform: scale(1.08);
}

.badge-date .date-day {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--date-badge-day);
    line-height: 1.1;
}

.badge-date .date-month {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--date-badge-month);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ============================================ */
/* EVENT STATUS BADGE                           */
/* ============================================ */

.event-status-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 20;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 12px;
    letter-spacing: 2px;
    border: 4px solid;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    pointer-events: none;
}

.event-status-badge i {
    margin-right: 10px;
    font-size: 2rem;
}

.event-status-badge small {
    font-size: 0.6em;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.status-abgesagt {
    background: rgba(220, 53, 69, 0.92);
    color: white;
    border-color: #a71d2a;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-verschoben {
    background: rgba(255, 193, 7, 0.92);
    color: #333;
    border-color: #d39e00;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2);
    animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1.05);
    }
}

/* ============================================ */
/* EVENT BADGE - KATEGORIE                      */
/* ============================================ */

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.event-badge .badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-mama {
    background: var(--category-mama-bg);
    color: var(--category-mama-text);
}

.badge-familie {
    background: var(--category-familie-bg);
    color: var(--category-familie-text);
}

.badge-both {
    background: var(--category-both-bg);
    color: var(--category-both-text);
}

/* ============================================ */
/* EVENT IMAGE                                  */
/* ============================================ */

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink);
}

/* ============================================ */
/* EVENT BODY                                   */
/* ============================================ */

.event-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--event-title-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.event-title:hover {
    color: var(--event-title-hover);
}

.event-meta {
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--event-meta-color);
    margin-bottom: 5px;
}

.meta-item i {
    color: var(--event-meta-icon);
    width: 18px;
}

/* ============================================ */
/* EVENT ACTIONS                                */
/* ============================================ */

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.event-actions .btn {
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

/* ============================================ */
/* GALLERY                                      */
/* ============================================ */

.gallery-preview-card {
    background: var(--gallery-card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-default);
}

.gallery-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-preview-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.gallery-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-card:hover .gallery-preview-image img {
    transform: scale(1.05);
}

.gallery-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gallery-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-preview-card:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-preview-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gallery-count-bg);
    color: var(--gallery-count-text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gallery-preview-body {
    padding: 12px 15px;
}

.gallery-preview-title {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* ============================================ */
/* GALERIE ALBUM                                */
/* ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-pink);
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 20, 147, 0.8));
    padding: 30px 20px 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ============================================ */
/* LIGHTBOX                                     */
/* ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightbox-bg);
    z-index: 9999;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--lightbox-caption-text);
    background: var(--lightbox-caption-bg);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.close-lightbox:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lightbox-nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--lightbox-nav-hover);
    border-color: var(--primary-pink);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ============================================ */
/* EVENT DETAIL                                 */
/* ============================================ */

.event-detail-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-default);
    margin-bottom: 30px;
}

.event-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    background: var(--gradient-pink);
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.event-detail-badge .badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-detail-content {
    padding: 10px 0;
}

.event-meta-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.event-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 25px;
}

.event-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    background: var(--bg-soft);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.event-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.meta-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 20px;
    box-shadow: var(--shadow-default);
}

.meta-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.event-detail-description {
    margin-bottom: 30px;
}

.event-detail-description h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.description-content h1,
.description-content h2,
.description-content h3 {
    color: var(--text-heading);
    margin-top: 20px;
    margin-bottom: 10px;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.description-content li {
    margin-bottom: 5px;
}

.description-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

.description-content a {
    color: var(--text-link);
    text-decoration: none;
}

.description-content a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.btn-ticket {
    padding: 15px 50px !important;
    font-size: 1.2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 20, 147, 0);
    }
}

.ticket-hint {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================ */
/* STATISTICS                                   */
/* ============================================ */

.statistics {
    background: var(--bg-card);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 10px 0 5px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* ============================================ */
/* NEWSLETTER                                   */
/* ============================================ */

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 15px 25px;
    font-size: 1rem;
    background: var(--bg-input);
}

.newsletter-form .btn-light {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    font-weight: 600;
    background: white;
    color: var(--primary-pink);
    border: none;
}

.newsletter-form .btn-light:hover {
    background: #f8f8f8;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer h4 {
    color: var(--footer-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-pink);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--footer-social-bg);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--footer-social-hover);
    transform: translateY(-3px);
}

.footer .copyright {
    color: var(--footer-text);
    opacity: 0.6;
}

/* ============================================ */
/* BADGE STYLES                                 */
/* ============================================ */

.badge-pink {
    background: var(--gradient-pink);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-purple {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-gradient {
    background: var(--gradient-pink);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-success {
    background: var(--color-success);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-danger {
    background: var(--color-danger);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-warning {
    background: var(--color-warning);
    color: var(--color-warning-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-info {
    background: var(--color-info);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ============================================ */
/* ADMIN                                        */
/* ============================================ */

.admin-sidebar {
    background: var(--admin-sidebar-bg);
    min-height: 100vh;
    padding: 20px;
}

.admin-sidebar .nav-link {
    color: var(--admin-sidebar-link) !important;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--admin-sidebar-link-hover) !important;
}

.admin-sidebar .nav-link.active {
    background: var(--admin-sidebar-active);
    color: white !important;
    box-shadow: var(--shadow-pink);
}

.admin-card {
    background: var(--admin-card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-default);
    margin-bottom: 30px;
    border-left: 4px solid var(--admin-card-border);
}

.admin-card .card-title {
    color: var(--text-heading);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .event-image {
        height: 180px;
    }
    .gallery-preview-image {
        height: 150px;
    }
    .hero-section {
        min-height: 60vh;
        padding: 60px 0;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .event-detail-card {
        padding: 20px;
    }
    .event-detail-title {
        font-size: 1.8rem;
    }
    .event-detail-meta {
        grid-template-columns: 1fr;
    }
    .event-detail-image {
        min-height: 250px;
    }
    .btn-ticket {
        width: 100%;
        justify-content: center;
    }
    .newsletter-form .input-group {
        flex-direction: column;
    }
    .newsletter-form .form-control {
        border-radius: 50px !important;
        margin-bottom: 10px;
    }
    .newsletter-form .btn-light {
        border-radius: 50px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    .event-detail-title {
        font-size: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .close-lightbox {
        right: 20px;
        font-size: 35px;
    }
    .badge-date {
        min-width: 50px;
        padding: 6px 10px;
        border-radius: 12px;
        border-width: 2px;
    }
    .badge-date .date-day {
        font-size: 1.4rem;
    }
    .badge-date .date-month {
        font-size: 0.65rem;
    }
    .event-badge .badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    .event-status-badge {
        font-size: 1rem;
        padding: 6px 14px;
        border-width: 2px;
    }
    .event-status-badge i {
        font-size: 1.1rem;
    }
    .event-status-badge small {
        font-size: 0.5em;
    }
    .event-image {
        height: 160px;
    }
    .event-body {
        padding: 18px;
    }
    .event-title {
        font-size: 1.1rem;
    }
    .event-actions .btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}