/* === MODERN RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #6C1E26 0%, #884B43 30%, #C18F96 70%, #F1E1E9 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    color: #1E0708;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(241, 225, 233, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(108, 30, 38, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(108, 30, 38, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-logo {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1E0708;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* === NAVIGATION === */
.navigation {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #1E0708;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(108, 30, 38, 0.1);
    color: #6C1E26;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1E0708;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 3rem 2rem 3.5rem;
    text-align: center;
}

.slide-overlay h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #1E0708;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* === MAIN CONTENT === */
.main-content {
    margin-top: 0;
}

.section {
    padding: 3rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(30, 7, 8, 0.8);
}

/* === START SECTION === */
.start-section {
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(30, 7, 8, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #F1E1E9;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(30, 7, 8, 0.7);
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(108, 30, 38, 0.15);
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: #884B43;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #6C1E26;
    line-height: 1.5;
}

/* === START SECTION === */
.start-section {
    background: rgba(255, 255, 255, 0.15);
}

.start-section .section-title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(30, 7, 8, 0.8);
}

/* === ABOUT SECTION === */
.about-section {
    background: rgba(255, 255, 255, 0.1);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #1E0708;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* === SALES SECTION === */
.sales-section {
    background: rgba(255, 255, 255, 0.05);
}

.sales-content {
    max-width: 800px;
    margin: 0 auto;
}

.sales-intro {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #FFFFFF;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-shadow: 0 2px 6px rgba(30, 7, 8, 0.8);
}

.sales-location {
    display: flex;
    justify-content: center;
}

.location-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
    max-width: 500px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(108, 30, 38, 0.15);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E0708;
    margin: 0;
}

.website-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #884B43;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: #6C1E26;
}

.location-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.2rem;
    color: #884B43;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: #6C1E26;
    line-height: 1.4;
    margin: 0;
}

/* === APPOINTMENTS SECTION === */
.appointments-section {
    background: rgba(255, 255, 255, 0.10);
}

.appointments-section .section-title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(30, 7, 8, 0.8);
}

.appointments-content {
    max-width: 600px;
    margin: 0 auto;
}

.events-container {
    display: flex;
    justify-content: center;
}

.event-flyer {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-flyer:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(108, 30, 38, 0.15);
}

.termine-text {
    text-align: center;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-top: 2rem;
    font-style: italic;
    text-shadow: 0 2px 6px rgba(30, 7, 8, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
    max-width: 500px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(108, 30, 38, 0.15);
}

.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #884B43, #C18F96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(108, 30, 38, 0.3);
}

.event-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 1rem;
}

.event-date,
.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #6C1E26;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-description {
    font-size: 0.9rem;
    color: #884B43;
    line-height: 1.5;
    margin-top: 1rem;
}



/* === CONTACT SECTION === */
.contact-section {
    background: rgba(255, 255, 255, 0.20);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(108, 30, 38, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.contact-card-wide {
    padding: 2.5rem 2rem;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(108, 30, 38, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #884B43, #C18F96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(108, 30, 38, 0.3);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #6C1E26;
    line-height: 1.4;
    margin: 0;
}

.contact-details a {
    color: #884B43;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #6C1E26;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #884B43;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #1E0708;
    transform: translateX(3px);
}

.contact-info-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-group p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    font-size: 1rem;
    color: #6C1E26;
    line-height: 1.4;
}

.contact-info-group p i {
    color: #884B43;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info-group a {
    color: #884B43;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-group a:hover {
    color: #6C1E26;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.delivery-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #6C1E26;
    line-height: 1.6;
}

.delivery-info strong {
    color: #1E0708;
    font-weight: 600;
}

.delivery-locations {
    font-size: 0.9rem;
}

.delivery-times,
.delivery-prices {
    font-size: 0.9rem;
}

.delivery-note {
    font-weight: 600;
    color: #884B43;
    font-size: 0.95rem;
}

.delivery-contact {
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

.delivery-contact a {
    color: #884B43;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.delivery-contact a:hover {
    color: #6C1E26;
}

.contact-card-delivery {
    grid-column: span 1;
}

/* === DELIVERY INFO BOX === */
.delivery-info-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
    max-width: 900px;
    margin: 1rem 0 0 0;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(136, 75, 67, 0.2);
}

.delivery-header i {
    font-size: 2rem;
    color: #884B43;
}

.delivery-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E0708;
    margin: 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.delivery-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-column h4 i {
    color: #884B43;
    font-size: 1rem;
}

.delivery-column p {
    font-size: 0.95rem;
    color: #6C1E26;
    line-height: 1.7;
    margin: 0;
}

.delivery-footer {
    background: rgba(136, 75, 67, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.delivery-minimum {
    font-size: 1rem;
    font-weight: 600;
    color: #884B43;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-minimum i {
    font-size: 1.1rem;
}

.delivery-contact-note {
    font-size: 0.95rem;
    color: #6C1E26;
    margin: 0;
}

.delivery-contact-note a {
    color: #884B43;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.delivery-contact-note a:hover {
    color: #6C1E26;
    text-decoration: underline;
}

/* === GALLERY SECTION === */
.gallery-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 5rem 0;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    text-shadow: 0 2px 6px rgba(30, 7, 8, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(108, 30, 38, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 30, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1E0708;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* === LEGAL PAGES === */
.legal-page {
    padding-top: 2rem;
    margin-top: 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.1);
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1E0708;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6C1E26;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E0708;
    margin-bottom: 1rem;
    border-bottom: 2px solid #884B43;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6C1E26;
    margin: 1.5rem 0 1rem 0;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6C1E26;
    margin: 1rem 0 0.5rem 0;
}

.legal-section p {
    font-size: 1rem;
    color: #1E0708;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #1E0708;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-legal {
    background: rgba(108, 30, 38, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-info-legal p {
    margin-bottom: 0;
    font-weight: 500;
}

.legal-section a {
    color: #884B43;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #6C1E26;
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 30, 38, 0.2);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #884B43, #C18F96);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 15px 30px rgba(108, 30, 38, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(108, 30, 38, 0.4);
}

/* === SMOOTH SCROLLING === */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* === FOOTER === */
.footer {
    width: 100%;
    padding: 2rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    text-align: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-shadow: 0 1px 3px rgba(30, 7, 8, 0.8);
}

.footer-content p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #F1E1E9;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(30, 7, 8, 0.8);
}

.footer-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links span {
    color: rgba(241, 225, 233, 0.7);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(30, 7, 8, 0.8);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1000px) {
    .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 900px) {
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation.mobile-active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(241, 225, 233, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(108, 30, 38, 0.2);
        box-shadow: 0 10px 30px rgba(108, 30, 38, 0.15);
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navigation.mobile-active .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .navigation.mobile-active .nav-link {
        display: block;
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .hero-slider {
        margin-top: 70px;
        height: 50vh;
        min-height: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
    
    .slide-overlay {
        padding: 2rem 1rem 2.5rem;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    

    
    .section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-info-group p {
        justify-content: center;
        text-align: left;
    }
    
    .delivery-info-box {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
    }
    
    .delivery-header {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .delivery-header i {
        font-size: 1.5rem;
    }
    
    .delivery-header h3 {
        font-size: 1.4rem;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .delivery-column h4 {
        font-size: 1rem;
    }
    
    .delivery-column p {
        font-size: 0.9rem;
    }
    
    .delivery-footer {
        padding: 1.2rem;
    }
    
    .delivery-minimum {
        font-size: 0.95rem;
    }
    
    .delivery-contact-note {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-container {
        padding: 0 0.75rem;
        height: 65px;
    }
    
    .hero-slider {
        margin-top: 65px;
        height: 45vh;
        min-height: 280px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-arrow.prev {
        left: 0.5rem;
    }
    
    .slider-arrow.next {
        right: 0.5rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-overlay {
        padding: 1.5rem 0.75rem 2rem;
    }
    
    .header-logo {
        width: 50px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        gap: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-card {
        padding: 1rem 0.6rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .social-links a {
        font-size: 0.75rem;
    }
    
    .delivery-info-box {
        padding: 1.2rem;
        border-radius: 15px;
        width: 100%;
        max-width: 350px;
    }
    
    .delivery-header {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }
    
    .delivery-header i {
        font-size: 1.3rem;
    }
    
    .delivery-header h3 {
        font-size: 1.2rem;
    }
    
    .delivery-grid {
        gap: 1.2rem;
    }
    
    .delivery-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .delivery-column h4 i {
        font-size: 0.9rem;
    }
    
    .delivery-column p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .delivery-footer {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .delivery-minimum {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .delivery-minimum i {
        font-size: 1rem;
    }
    
    .delivery-contact-note {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .social-links a {
        font-size: 0.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-section {
        padding: 2.5rem 0;
    }
    
    .gallery-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Sehr kleine Bildschirme - Fallback */
@media (max-width: 320px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
}
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-links span {
        display: inline;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
    }
    
    .event-card {
        padding: 1.5rem 1rem;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

/* === PRINT STYLES === */
@media print {
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}