/* 
 * FKK Point Bruchsal - Component Stylesheet
 * Styles für spezifische Bereiche, Komponenten und Seitenvorlagen
 */

/* ===== Allgemeine Komponentenstile ===== */
.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
    text-align: center;
}

.feature-description {
    color: var(--gray);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== Service-Bereich Komponenten ===== */
.services-grid, 
.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-title {
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.service-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-card ul {
    text-align: left;
    margin-bottom: 20px;
    list-style-position: inside;
    color: var(--gray);
}

.service-card ul li {
    margin-bottom: 8px;
}

.service-link {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link::after {
    content: ' →';
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--gold);
}

.service-link:hover::after {
    margin-left: 5px;
}

.extra-service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    text-align: center;
}

.extra-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.extra-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.extra-service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== Galerie-Komponenten ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.gallery-img, .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img,
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-subtitle {
    color: var(--gold);
    font-size: 14px;
}

/* Galerie Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    margin: 0 auto;
}

.lightbox-description {
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.lightbox-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.lightbox-prev,
.lightbox-next {
    background-color: transparent;
    color: var(--white);
    border: none;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

/* ===== Dynamische Inhalts-Komponenten ===== */
/* Events-Karten */
.events-grid, 
.offers-grid, 
.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card, 
.offer-card, 
.girl-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover, 
.offer-card:hover, 
.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.event-card h3, 
.offer-card h3, 
.girl-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
}

.event-card p, 
.offer-card p, 
.girl-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    flex: 1;
}

.event-card span, 
.offer-card span {
    font-weight: 600;
    color: var(--gold);
}

/* Girl-Karten */
.girl-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.girl-image:hover img {
    transform: scale(1.1);
}

.girl-image:hover .girl-overlay {
    transform: translateY(0);
}

.girl-details {
    display: flex;
    justify-content: space-between;
}

.girl-age, 
.girl-nationality {
    font-size: 14px;
    color: var(--light-gold);
}

/* Girl Vorschau für About-Seite */
.girl-preview {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.girl-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.girl-preview-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.girl-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-preview:hover .girl-preview-image img {
    transform: scale(1.1);
}

.girl-preview h3 {
    color: var(--primary-red);
    padding: 15px 15px 5px;
    font-size: 1.3rem;
}

.girl-preview p {
    color: var(--gray);
    padding: 0 15px 15px;
    font-size: 0.9rem;
}

.view-all-link {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* Event-Detailseite */
.event-details-grid,
.girl-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.event-image-gallery,
.girl-image-gallery {
    position: relative;
}

.event-main-image,
.girl-main-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-main-image img,
.girl-main-image img {
    width: 100%;
    display: block;
}

.event-image-thumbnails,
.girl-image-thumbnails {
    display: flex;
    gap: 10px;
}

.event-thumbnail,
.girl-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-thumbnail:hover,
.girl-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.event-thumbnail img,
.girl-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-information,
.girl-information {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-description,
.girl-description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.event-highlights,
.girl-attributes {
    margin-bottom: 30px;
}

.event-highlights h3,
.girl-attributes h3,
.event-booking h3,
.girl-availability h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.event-highlights-list,
.girl-attributes-list {
    list-style: none;
    padding-left: 0;
}

.event-highlights-list li,
.girl-attributes-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.event-highlights-list li:before,
.girl-attributes-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.event-ticket-info,
.girl-schedule {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

/* Event-Seitenformatierung */
.events-filter,
.girls-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.events-filter-button,
.girls-filter-button {
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-filter-button.active,
.events-filter-button:hover,
.girls-filter-button.active,
.girls-filter-button:hover {
    background-color: var(--gold);
    color: var(--black);
}

.events-month-container {
    margin-bottom: 50px;
}

.events-month-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.events-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.event-card-large {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.event-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card-large:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.event-card-meta-item {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.event-card-meta-item i {
    margin-right: 5px;
}

.event-card-description {
    color: var(--light-gray);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.event-card-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    align-self: flex-start;
}

.event-card-button:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Girls-Seitenformatierung */
.girls-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.girl-profile-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.girl-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.girl-profile-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.girl-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-profile-card:hover .girl-profile-image img {
    transform: scale(1.1);
}

.girl-profile-info {
    padding: 20px;
    text-align: center;
}

.girl-profile-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.girl-profile-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.girl-profile-details span {
    color: var(--gold);
    font-size: 0.9rem;
}

.girl-profile-description {
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.girl-profile-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.girl-profile-button:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Kontaktseite */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2,
.contact-form h2 {
    text-align: left;
}

.contact-info h2::after,
.contact-form h2::after {
    left: 0;
    transform: none;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.contact-text p,
.contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-red);
}

/* Formular-Meldungen */
.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Formular-Feldformatierung */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* FAQ Accordion */
.accordion,
.faq-accordion {
    margin-bottom: 30px;
}

.card {
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.05);
}

.card-header {
    padding: 0;
    background-color: rgba(255,255,255,0.05);
    border-bottom: none;
}

.card-header .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.card-header .btn-link::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.card-header .btn-link[aria-expanded="true"]::after {
    content: '−';
}

.card-body {
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
    color: var(--light-gray);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

/* ===== Preiskomponenten ===== */
.price-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.price-header {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    padding: 20px;
    color: var(--white);
    text-align: center;
}

.price-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.price-body {
    padding: 25px;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.price-period {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.price-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--gray);
    text-align: left;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* ===== Reaktionsschnittstellenelemente ===== */
.no-items-message {
    color: var(--light-gray);
    text-align: center;
    font-size: 1.2rem;
    padding: 40px 0;
}

.error-message {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.2rem;
    padding: 40px 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .event-details-grid,
    .girl-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .similar-events,
    .other-girls {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .header-container {
        flex-direction: row;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .about-container, 
    .contact-container {
        flex-direction: column;
    }
    
    .about-text, 
    .contact-info {
        padding-right: 0;
    }
    
    .contact-info, 
    .contact-form {
        padding: 0;
    }
    
    .event-meta,
    .girl-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .events-filter,
    .girls-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .events-filter-button,
    .girls-filter-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-logo, 
    .footer-links, 
    .footer-newsletter {
        margin-bottom: 40px;
    }
    
    .events-page-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .lightbox-content {
        width: 95%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .events-grid, 
    .offers-grid, 
    .girls-grid, 
    .services-grid,
    .events-page-grid,
    .girls-page-grid {
        grid-template-columns: 1fr;
    }
    
    .about-circle-container {
        width: 250px;
        height: 250px;
    }
    
    .about-circle-accent {
        width: 100px;
        height: 100px;
        font-size: 18px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group-append {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-logo-circle {
        float: none;
        margin: 0 auto 15px;
    }
    
    .footer-logo-text {
        text-align: center;
        line-height: normal;
    }
    
    .footer-about {
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-circle-container {
        width: 300px;
        height: 300px;
    }
    
    .about-circle-accent {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }
    
    .event-card-large {
        margin-bottom: 20px;
    }
    
    .events-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .price-card {
        margin-bottom: 20px;
    }
}