/* ======================================
   Base Styles
   ====================================== */
   :root {
    --primary-color: #FF69B4;        /* Hot Pink - primary brand color */
    --primary-light: #FFB6C1;        /* Light Pink */
    --primary-dark: #DB7093;         /* Pale Violet Red - darker shade */
    --secondary-color: #FFC0CB;      /* Pink */
    --gradient-start: #FFC0CB;       /* Light pink for gradient start */
    --gradient-end: #FF69B4;         /* Pink for gradient end */
    --text-color: #333;              /* Dark Gray for main text */
    --text-light: #666;              /* Gray for secondary text */
    --white: #fff;                   /* White */
    --light-bg: #FFEFF4;             /* Very light pink background */
    --border-color: #FFD1DC;         /* Light pink border color */
    --success-color: #4CAF50;        /* Green */
    --error-color: #F44336;          /* Red */
    --warning-color: #FFC107;        /* Yellow */
    --shadow-color: rgba(255, 105, 180, 0.2); /* Pink shadow with transparency */
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    padding: 2rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ======================================
   Header
   ====================================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 60px;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand {
    padding: 0;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--primary-color);
}

.lang-switch {
    background-color: var(--primary-light);
    border-radius: 20px;
    color: var(--white) !important;
    margin-left: 1rem;
}

.lang-switch:hover {
    background-color: var(--primary-color);
}

/* ======================================
   Footer
   ====================================== */
.site-footer {
    background-color: var(--white);
    box-shadow: 0 -2px 10px var(--shadow-color);
    padding: 2rem 0;
    margin-top: 2rem;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.4rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ======================================
   Home Page
   ====================================== */
.hero-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.profile-image {
    border-radius: 20px;
    box-shadow: 5px 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.profile-image:hover {
    transform: scale(1.02);
}

.news-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.section-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.news-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    margin-bottom: 0.5rem;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

/* ======================================
   Schedule Page - Nur technische Fixes
   ====================================== */

.schedule-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed; /* WICHTIG: Fixe Spaltenbreite */
    min-width: 700px; /* Mindestbreite für mobile Geräte */
}

.calendar-table th,
.calendar-table td {
    width: 14.28%; /* 100% / 7 Tage = feste Breite */
    text-align: center;
    padding: 0.75rem;
    word-wrap: break-word; /* Lange Texte umbrechen */
    overflow: hidden; /* Überlaufenden Inhalt verstecken */
}

.calendar-table th {
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 10px;
    min-width: 100px; /* Mindestbreite */
}

.calendar-table td {
    background-color: var(--light-bg);
    border-radius: 10px;
    vertical-align: top;
    height: 100px; /* Feste Höhe beibehalten */
    min-width: 100px; /* Mindestbreite */
}

/* FIX 2: Wrapper für horizontales Scrollen auf mobilen Geräten */
.calendar-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* FIX 3: Navigation - nur kleine Verbesserungen */
.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap; /* Umbruch auf kleinen Bildschirmen */
    gap: 1rem; /* Abstand zwischen Elementen */
}

.month-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    flex: 1; /* Titel nimmt verfügbaren Platz */
    text-align: center;
    min-width: 200px; /* Mindestbreite */
}

.month-nav-btn {
    background-color: var(--primary-light);
    border: none;
    color: var(--white);
    border-radius: 20px;
    padding: 0.75rem 1rem; /* Etwas mehr Padding */
    transition: all 0.3s ease;
    text-decoration: none; /* Kein Unterstrich */
    white-space: nowrap; /* Text nicht umbrechen */
}

.month-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white); /* Farbe beibehalten */
}

.today-btn {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    border-radius: 20px;
    padding: 0.75rem 1.5rem; /* Etwas mehr Padding */
    margin-left: 1rem;
    transition: all 0.3s ease;
    text-decoration: none; /* Kein Unterstrich */
    white-space: nowrap; /* Text nicht umbrechen */
}

.today-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white); /* Farbe beibehalten */
}

/* Event-Indikatoren - bessere Darstellung in festen Zellen */
.event-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 4px; /* Etwas mehr Abstand */
    padding: 0 5px;
    max-height: 60px; /* Maximale Höhe begrenzen */
    overflow: hidden; /* Überlauf verstecken */
}

.event-indicator {
    width: 22px; /* Etwas kleiner für bessere Anordnung */
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem; /* Etwas kleinere Schrift */
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Größe beibehalten */
}

.more-events {
    font-size: 0.65rem;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 2px 6px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ======================================
   Mobile Optimierungen - Verbessert
   ====================================== */

/* Tablet Landscape */
@media (max-width: 991.98px) {
    .schedule-container {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 15px;
    }

    .month-navigation {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .month-title {
        order: -1;
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    .today-btn {
        margin-left: 0;
        align-self: center;
    }

    .calendar-table {
        min-width: 600px;
    }

    .calendar-table th,
    .calendar-table td {
        min-width: 85px;
        padding: 0.4rem;
    }

    .calendar-table td {
        height: 90px;
    }
}

/* Mobile Portrait */
@media (max-width: 767.98px) {
    .schedule-container {
        padding: 0.75rem;
        margin: 0.25rem;
        border-radius: 10px;
    }

    .month-navigation {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .month-title {
        font-size: 1.4rem;
    }

    .month-nav-btn,
    .today-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 15px;
    }

    /* Navigation Buttons in einer Reihe */
    .month-navigation > div:first-child {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .calendar-table {
        min-width: 480px;
    }

    .calendar-table th,
    .calendar-table td {
        min-width: 68px;
        padding: 0.25rem;
        font-size: 0.8rem;
    }

    .calendar-table th {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }

    .calendar-table td {
        height: 75px;
    }

    .calendar-date .day-number {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
        padding: 1px 3px;
    }

    .event-indicator {
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
    }

    .event-indicators {
        gap: 2px;
        max-height: 45px;
        padding: 0 2px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .schedule-container {
        padding: 0.5rem;
        margin: 0.1rem;
    }

    .month-navigation {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .month-title {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .month-nav-btn,
    .today-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 12px;
    }

    /* Timezone Selector kompakter */
    .timezone-selector {
        margin-bottom: 0.5rem;
    }

    .timezone-selector label {
        font-size: 0.8rem;
    }

    .timezone-selector select {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 8px;
    }

    .calendar-table {
        min-width: 350px;
        border-spacing: 2px;
    }

    .calendar-table th,
    .calendar-table td {
        min-width: 48px;
        padding: 0.15rem;
        font-size: 0.7rem;
    }

    .calendar-table th {
        padding: 0.4rem 0.15rem;
        font-size: 0.65rem;
        font-weight: 600;
    }

    .calendar-table td {
        height: 60px;
        border-radius: 6px;
    }

    .calendar-date {
        padding: 0.1rem;
    }

    .calendar-date .day-number {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
        padding: 1px 2px;
    }

    .calendar-date.today .day-number {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.75rem;
    }

    .event-indicator {
        width: 12px;
        height: 12px;
        font-size: 0.45rem;
    }

    .event-indicators {
        gap: 1px;
        max-height: 35px;
        padding: 0 1px;
    }

    .more-events {
        font-size: 0.5rem;
        padding: 1px 3px;
        border-radius: 6px;
    }

    /* Legende kompakter */
    .calendar-legend {
        margin-top: 1rem;
        padding: 0.75rem;
    }

    .calendar-legend h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .legend-item {
        font-size: 0.75rem;
        padding: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .legend-color {
        width: 16px !important;
        height: 16px !important;
        margin-right: 0.4rem !important;
    }
}

/* Extra Small Mobile (unter 400px) */
@media (max-width: 399.98px) {
    .schedule-container {
        padding: 0.4rem;
        margin: 0;
        border-radius: 5px;
    }

    .month-title {
        font-size: 1.1rem;
    }

    .month-nav-btn,
    .today-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .calendar-table {
        min-width: 320px;
        border-spacing: 1px;
    }

    .calendar-table th,
    .calendar-table td {
        min-width: 44px;
        padding: 0.1rem;
        font-size: 0.65rem;
    }

    .calendar-table th {
        padding: 0.3rem 0.1rem;
        font-size: 0.6rem;
    }

    .calendar-table td {
        height: 50px;
        border-radius: 4px;
    }

    .calendar-date .day-number {
        font-size: 0.7rem;
    }

    .calendar-date.today .day-number {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 0.65rem;
    }

    .event-indicator {
        width: 10px;
        height: 10px;
        font-size: 0.4rem;
    }

    .event-indicators {
        max-height: 25px;
    }

    .more-events {
        font-size: 0.45rem;
        padding: 0 2px;
    }
}

/* ======================================
   Zusätzliche technische Verbesserungen
   ====================================== */

/* Bessere Scrollbar für mobile Geräte */
.calendar-wrapper::-webkit-scrollbar {
    height: 6px;
}

.calendar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.calendar-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.calendar-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Timezone Selector - kleiner Fix */
.timezone-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.timezone-selector select {
    min-width: 150px;
}

@media (max-width: 575.98px) {
    .timezone-selector {
        justify-content: center;
        width: 100%;
    }

    .timezone-selector select {
        min-width: 120px;
        font-size: 0.8rem;
    }
}

/* ======================================
   Events Page
   ====================================== */
.event-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card-body {
    padding: 1.5rem;
}

.event-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-title {
    margin-bottom: 1rem;
}

.event-location {
    margin-bottom: 1rem;
}

.event-details-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.event-details-btn:hover {
    background-color: var(--primary-dark);
}

.guest-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.guest-card:hover {
    transform: translateY(-5px);
}

.guest-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guest-card-body {
    padding: 1.5rem;
}

.guest-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.guest-section-title {
    margin-bottom: 1.5rem;
}

/* ======================================
   Discography Page
   ====================================== */
.album-section {
    margin-bottom: 4rem;
}

.album-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-cover {
    width: 100%;
    height: auto;
}

.album-card-body {
    padding: 1.5rem;
}

.album-release-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.album-title {
    margin-bottom: 1rem;
}

.track-list {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.track-item:last-child {
    border-bottom: none;
}

.track-number {
    margin-right: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    min-width: 30px;
}

.track-title {
    flex: 1;
}

.track-duration {
    color: var(--text-light);
}

.music-links {
    display: flex;
    margin-top: 1.5rem;
}

.music-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    border-radius: 20px;
    background-color: var(--primary-light);
    color: var(--white);
    transition: all 0.3s ease;
}

.music-link:hover {
    background-color: var(--primary-color);
}

.music-link i {
    margin-right: 0.5rem;
}

/* ======================================
   Gallery Page
   ====================================== */
.gallery-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.gallery-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: var(--light-bg);
    border: none;
    color: var(--text-color);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 105, 180, 0.7);
    color: var(--white);
    padding: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ======================================
   Contact Page
   ====================================== */
.contact-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--shadow-color);
}

.submit-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

.alert {
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* ======================================
   About Page
   ====================================== */
.about-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.profile-detail {
    display: flex;
    margin-bottom: 0.75rem;
}

.profile-label {
    font-weight: 700;
    min-width: 150px;
    color: var(--primary-dark);
}

.profile-value {
    flex: 1;
}

.profile-social {
    margin-top: 1.5rem;
}

.profile-description {
    margin-top: 2rem;
    line-height: 1.8;
}

/* ======================================
   Responsive Styles
   ====================================== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    .lang-switch {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .profile-image {
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .site-content {
        padding: 1.5rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .calendar-table td {
        height: 80px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .site-content {
        padding: 1rem 0;
    }
    
    .hero-section,
    .news-section,
    .schedule-container,
    .gallery-container,
    .contact-container,
    .about-container {
        padding: 1.5rem;
    }
    
    .calendar-table th,
    .calendar-table td {
        padding: 0.5rem;
    }
    
    .calendar-table td {
        height: 60px;
        font-size: 0.8rem;
    }
    
    .event-indicator {
        font-size: 0.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-gap: 1rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .profile-label {
        min-width: 120px;
    }
}

/* ======================================
   Animation Effects
   ====================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* ======================================
   Admin Dashboard Styles
   ====================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transition: all 0.3s ease;
}

.admin-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-logo img {
    max-width: 150px;
}

.admin-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.admin-menu-item {
    margin-bottom: 0.5rem;
}

.admin-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.admin-menu-link:hover,
.admin-menu-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.admin-menu-link i {
    margin-right: 0.75rem;
}

.admin-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-title {
    margin: 0;
    color: var(--primary-dark);
}

.admin-user {
    display: flex;
    align-items: center;
}

.admin-user-name {
    margin-right: 1rem;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.admin-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.admin-form label {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.admin-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.admin-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--shadow-color);
}

.admin-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.admin-btn-secondary {
    background-color: var(--text-light);
}

.admin-btn-secondary:hover {
    background-color: var(--text-color);
}

.admin-btn-success {
    background-color: var(--success-color);
}

.admin-btn-success:hover {
    background-color: #3d8b40;
}

.admin-btn-danger {
    background-color: var(--error-color);
}

.admin-btn-danger:hover {
    background-color: #d32f2f;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--light-bg);
    font-weight: 700;
    color: var(--primary-dark);
}

.admin-table tbody tr:hover {
    background-color: var(--light-bg);
}

.admin-table .actions {
    display: flex;
    gap: 0.5rem;
}

/* Mobile menu toggle */
.admin-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    padding: 0.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .admin-menu-toggle {
        display: block;
    }
    
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-user {
        margin-top: 1rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem;
    }
}

/* File upload preview */
.file-preview {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.file-preview .remove-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background-color: var(--error-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ======================================
   Buttons
   ====================================== */

.rounded-pill {
    background-color: var(--primary-light)!important;
    color: var(--white)!important;
    border-color: var(--primary-light)!important;
}

.card-header:first-child {
    background-color: var(--primary-light)!important;
    color: var(--white)!important;
    border-color: var(--primary-light)!important;
}

.card-header:first-child h4 {
    color: var(--white)!important;
}