/* ============================================
   MINIMAL ELEGANT JEWELRY STUDIO DESIGN
   ============================================ */

/* ============================================
   CSS BREAKPOINT VARIABLES
   ============================================ */
:root {
    --bp-small: 600px;
    --bp-medium: 768px;
    --bp-large: 1024px;
    --bp-xlarge: 1200px;
}

/* ============================================
   CROSS-BROWSER NORMALIZE & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
}

img, picture, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, textarea, select, button {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   CUSTOM FONTS
   ============================================ */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #1a1a1a;
    --secondary: #c94961;
    --light: #f9f7f4;
    --white: #ffffff;
    --text: #3a3a3a;
    --border: #e8e4dd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   ACCESSIBILITY HELPERS
   ============================================ */

/* Skip Link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible for better keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 300;
    letter-spacing: 0.3px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--secondary);
    z-index: 1000;
    height: 85px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    height: 100%;
}

.logo:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   DROPDOWN MENU (Desktop)
   ============================================ */

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--secondary);
    padding-left: 25px;
}

/* ============================================
   NAV TOGGLE (Mobile Hamburger)
   ============================================ */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    z-index: 998;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--light);
    color: var(--secondary);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.submenu-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .submenu-arrow {
    transform: rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}

.submenu-item {
    padding-left: 40px;
    font-size: 0.85rem;
    background: var(--light);
}

.submenu-item:hover {
    background: var(--border);
}

/* ============================================
   INFO BAR
   ============================================ */

.info-bar {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(249, 247, 244, 0.95), rgba(249, 247, 244, 0.9));
    border-bottom: 1px solid rgba(196, 169, 97, 0.2);
    z-index: 999;
    padding: 16px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-bar.hidden {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.opening-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.opening-status.open {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.opening-status.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.opening-status.open .status-dot {
    background: #22c55e;
}

.opening-status.closed .status-dot {
    background: #ef4444;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 600;
}

.info-text {
    font-size: 0.95rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text:hover {
    color: var(--secondary);
}

.info-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ============================================
   MOBILE INFO SECTION
   ============================================ */

.mobile-info-section {
    display: none;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 30px 20px;
}

.mobile-info-container {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--primary);
}

.mobile-info-container h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-info-container p {
    margin: 8px 0;
}

.mobile-info-container a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.mobile-info-container a:hover {
    text-decoration: underline;
}

.mobile-info-divider {
    height: 1px;
    background: var(--border);
    margin: 15px 0;
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    padding: 100px 40px;
    margin-top: 130px;
}

.welcome-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.welcome-tagline {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--secondary);
    margin: 0 0 32px 0;
    letter-spacing: 0.5px;
}

.welcome-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 60px;
    letter-spacing: 0.3px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid #e8dcc8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.welcome-cta {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 16px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.welcome-cta:hover {
    padding-bottom: 2px;
    border-bottom-width: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .welcome-title {
        font-size: 56px;
    }
    
    .welcome-tagline {
        font-size: 28px;
    }
    
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 20px;
        margin-top: 100px;
    }
    
    .welcome-title {
        font-size: 48px;
    }
    
    .welcome-tagline {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .welcome-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .welcome-section {
        padding: 40px 16px;
    }
    
    .welcome-title {
        font-size: 36px;
    }
    
    .welcome-tagline {
        font-size: 20px;
    }
    
    .welcome-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Adjust hero margin to account for info bar */
.hero {
    margin-top: 0;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

.hero {
    margin-top: 85px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    margin-top: 130px;
    min-height: 80vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) saturate(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content-large {
    bottom: 80px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 24px 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-link {
    display: inline-block;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 15px;
    border: 2px solid var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero-link:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
    .hero-subtitle {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-content-large {
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 100px;
        min-height: 70vh;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .hero-link {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .carousel-prev {
        left: 16px;
    }
    
    .carousel-next {
        right: 16px;
    }
    
    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 28px;
    }
    
    .hero-content-large {
        bottom: 50px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        min-height: 60vh;
        margin-top: 85px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    
    .hero-link {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }
    
    .carousel-prev {
        left: 12px;
    }
    
    .carousel-next {
        right: 12px;
    }
    
    .carousel-dots {
        bottom: 16px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .hero-content-large {
        bottom: 40px;
    }
}

/* ============================================
   APPOINTMENT NOTICE BANNER
   ============================================ */

.appointment-banner {
    background: transparent;
    padding: 32px 20px;
    text-align: center;
}

.appointment-banner-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.appointment-divider-top {
    width: 80px;
    height: 1px;
    background: var(--secondary);
    margin: 0 auto 16px;
}

.appointment-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.appointment-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.appointment-contact-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-serif);
    transition: color 0.3s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.appointment-contact-link:hover {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

.appointment-separator {
    color: var(--secondary);
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section:nth-child(even) {
    background: var(--light);
}

.section.alternate {
    background: var(--light);
}

.section.alternate:nth-child(odd) {
    background: var(--white);
}

/* ============================================
   SECTION GRID (TEXT + IMAGE LAYOUT)
   ============================================ */

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-text {
    padding: 20px 0;
}

.section-text h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.section-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
    border-radius: 4px;
}

.section.alternate .section-grid {
    grid-template-columns: 1fr 1fr;
}

.section.alternate .section-image {
    order: -1;
}

/* ============================================
   LOCATION MAP STYLING
   ============================================ */

.location-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    height: 400px;
    width: 100%;
}

.location-map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
    background: #f5f1e8;
    display: block;
}

/* SVG animations */
.location-map circle[r="8"] {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        r: 8;
        opacity: 0.3;
    }
    50% {
        r: 12;
        opacity: 0.1;
    }
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 70px;
    z-index: 10;
}

.map-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    letter-spacing: 0.3px;
}

/* ============================================
   JOURNEY SECTION (TRAURINGE REISE)
   ============================================ */

#trauringe {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.journey-header p {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--secondary) 80%, transparent);
}

.journey-step {
    display: grid;
    grid-template-columns: 56px 1fr 120px;
    gap: 28px;
    align-items: center;
    position: relative;
}

.journey-number {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(169, 50, 50, 0.15);
    position: relative;
    z-index: 1;
}

.journey-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.journey-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.journey-step-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    border: 2px solid var(--secondary);
    transition: all 0.4s ease;
}

.journey-step-image:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 32px rgba(169, 50, 50, 0.25);
}

.journey-image {
    margin-top: 50px;
    text-align: center;
}

.journey-image .section-image {
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
/* ============================================
   JOURNEY TIMELINE SECTION
   ============================================ */

.journey-header {
    text-align: center;
    margin-bottom: 70px;
}

.journey-header-logo {
    display: block;
    margin: 0 auto 40px;
    width: 100%;
    height: auto;
    border: 1px solid #e0d5c7;
    border-radius: 8px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.journey-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.journey-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.journey-timeline-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.journey-timeline-step:hover {
    transform: translateY(-8px);
}

.journey-timeline-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--secondary);
    opacity: 0.25;
    letter-spacing: 1px;
    order: 3;
}

.journey-timeline-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    order: 1;
}

.journey-modal-trigger {
    cursor: pointer;
}

.journey-timeline-step:hover .journey-timeline-image {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(169, 50, 50, 0.2);
}

.journey-timeline-step h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.3px;
    order: 2;
}

.journey-timeline-step p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
    order: 4;
    text-align: center;
}



.journey-slide-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 600;
}

.journey-slide-content p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    opacity: 0.95;
}

/* Journey Navigation */
.journey-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journey-carousel-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.journey-carousel-prev {
    left: 30px;
}

.journey-carousel-next {
    right: 30px;
}

/* Journey Dots */
.journey-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.journey-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-dot.active {
    background: var(--secondary);
    width: 36px;
    border-radius: 6px;
}

.journey-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SECTION TITLE CENTER (FOR SCHMUCK)
   ============================================ */

.section-title-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-center h2 {
    margin-bottom: 1rem;
}

.section-title-center p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #666;
}

.subsection {
    margin-bottom: 80px;
}

.subsection h3 {
    text-align: center;
    margin-bottom: 40px;
}

.subsection > p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.gallery-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-three .gallery-item {
    position: relative;
    aspect-ratio: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.gallery-three .gallery-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.gallery-three .gallery-footer {
    padding: 16px 12px;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gallery-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.gallery-footer {
    padding: 16px 12px;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 50, 50, 0) 0%, rgba(169, 50, 50, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(169, 50, 50, 0.25);
    transform: translateY(-8px);
    border-color: rgba(169, 50, 50, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* Verstecke alle Bilder */
}

.gallery-image img:first-child {
    display: block; /* Zeige nur das erste Bild */
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(0.85) contrast(1.1);
}
.gallery-item p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    width: auto;
    min-width: 60%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gallery-item:hover p {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(169, 50, 50, 1);
    color: #a93232;
    padding: 20px 32px;
    transform: translate(-50%, -50%) scale(1.08) rotate(-1deg);
    text-shadow: none;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-three .gallery-item:hover .gallery-image img {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(0.85) contrast(1.1);
}


.gallery-three .gallery-item p {
    position: static;
    margin: 0 0 8px 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    text-align: center;
    text-shadow: none;
    z-index: auto;
}

.gallery-three .gallery-item:hover p {
    background: transparent;
    border-color: transparent;
    color: var(--primary);
    padding: 0;
    transform: none;
    text-shadow: none;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.gallery-logo {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    box-sizing: border-box;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
}

.gallery-footer a {
    display: block;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}

.gallery-footer a:hover .gallery-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* ============================================
   PARTNER GRID
   ============================================ */

.partner-section {
    margin-top: 60px;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
    max-width: 960px;
    margin: 24px auto 0;
    align-items: stretch;
}

.partner-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    min-height: 90px;
}

.partner-logo-large img {
    height: 70px;
    width: auto;
    opacity: 0.95;
}

.partner-logo-large:hover {
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.partner-logo-contrast {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }

    .partner-logo-large {
        min-height: 80px;
    }

    .partner-logo-large img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .partner-logo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-logo-large {
        min-height: 72px;
    }

    .partner-logo-large img {
        height: 54px;
    }
}

.partner-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
    cursor: pointer;
}

.partner-logo:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(169, 50, 50, 0.15);
    transform: translateY(-4px);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 85%;
    max-height: 85%;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.partner-grid a {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3f0 100%);
    transition: all 0.3s ease;
    padding: 15px;
}

.partner-grid a:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(169, 50, 50, 0.15);
    background: var(--white);
}

.partner-grid img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
    filter: grayscale(60%);
}

.partner-grid a:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}


/* ============================================
   ALTGOLD SECTION
   ============================================ */

.altgold-section {
    background: #ffffff;
}

.altgold-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.altgold-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.altgold-image-wrapper:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.altgold-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.altgold-benefits {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.benefit-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.altgold-section .cta-text {
    margin-top: 32px;
    margin-bottom: 20px;
    font-size: 15px;
}

.altgold-section .cta-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 4px;
}

.altgold-section .cta-link:hover {
    padding-bottom: 2px;
    border-bottom-width: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .altgold-section .section-grid {
        grid-template-columns: 1fr;
    }
    
    .altgold-image-wrapper {
        order: 2;
    }
    
    .altgold-section .section-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .altgold-badge {
        bottom: 16px;
        left: 16px;
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .benefit-item {
        gap: 16px;
        grid-template-columns: 36px 1fr;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .benefit-item h3 {
        font-size: 15px;
    }
    
    .benefit-item p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .altgold-section {
        padding: 40px 20px;
    }
    
    .altgold-benefits {
        gap: 16px;
        margin: 32px 0;
    }
    
    .altgold-section .cta-text {
        margin-top: 24px;
    }
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light) !important;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(169, 50, 50, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a93232, transparent);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    font-size: 1rem;
    color: var(--primary);
    border: none;
    border-bottom: 2px solid #e0d9d0;
    background: transparent;
    outline: none;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: transparent;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -8px;
    font-size: 0.75rem;
    color: #a93232;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #a93232, #c94444);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 12px rgba(169, 50, 50, 0.5);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Date Input Styling */
.form-group input[type="date"] {
    color: var(--primary);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: opacity(0.6);
    transition: all 0.3s ease;
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator {
    filter: opacity(1);
}

.form-group input[type="date"]:focus::-webkit-calendar-picker-indicator {
    filter: invert(60%) sepia(20%) saturate(800%) hue-rotate(10deg) brightness(95%);
}

.submit-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(169, 50, 50, 0.4);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-icon {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.8;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: #a93232;
}

.submit-btn:hover .btn-icon {
    transform: translateX(6px);
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 18px 24px;
    border-radius: 12px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-message-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
    box-shadow: 0 4px 16px rgba(21, 87, 36, 0.1);
}

.form-message-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
    box-shadow: 0 4px 16px rgba(114, 28, 36, 0.1);
}

/* ============================================
   IMPRESSUM SECTION
   ============================================ */

.impressum-section {
    padding: 60px 40px;
    background: transparent;
}

.impressum-container {
    max-width: 1200px;
    margin: 0 auto;
}

.impressum-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 32px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.impressum-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--text);
}

.impressum-box strong {
    color: var(--primary);
    font-weight: 600;
}

.impressum-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
    opacity: 0.5;
}

.impressum-heading {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-family: inherit;
}

/* ============================================
   MODAL / LIGHTBOX
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Image Modal Specific Styling */
#imageModal .modal-content {
    background: var(--light);
    border-radius: 0;
    max-width: 95vw;
    width: 95vw;
    height: 92vh;
    max-height: 92vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light);
    transform: rotate(90deg);
}

/* Image Modal Close Button */
#imageModal .modal-close {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--white);
    z-index: 1003;
}

#imageModal .modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-body {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    height: 100%;
    position: relative;
}

/* Image Modal Body */
#imageModal .modal-body {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--light);
    cursor: grab;
}

/* Image Modal Image Container */
#imageModal .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.image-container:active {
    cursor: grabbing;
}

.modal-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
    user-select: none;
}

.modal-body img.zoomed {
    cursor: move;
}

/* Zoom Controls */
#imageModal .modal-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#imageModal .zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#imageModal .zoom-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Modal Navigation Arrows */
#imageModal .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 1003;
}

#imageModal .modal-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

#imageModal .modal-nav-prev {
    left: 20px;
}

#imageModal .modal-nav-next {
    right: 20px;
}

#imageModal .modal-nav.visible {
    display: flex;
}

/* Image Counter */
#imageModal .image-counter {
    margin-top: 15px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    pointer-events: auto;
}

/* Thumbnail Navigation */
.thumbnail-nav {
    display: none;
}

.thumbnail {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--secondary);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--light);
    overflow-y: auto;
}

.modal-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary);
}

.modal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Image Modal Text Overlay */
#imageModal .modal-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 40px 32px;
    background: rgba(249, 247, 244, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary);
    z-index: 1002;
    pointer-events: none;
    overflow: visible;
    text-shadow: none;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

#imageModal .modal-text h2 {
    margin-bottom: 8px;
    font-size: 1.9rem;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.5px;
}

#imageModal .modal-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    max-width: 700px;
}

/* Journey Modal Specific Styling */
.journey-modal-content {
    max-width: 750px;
    width: 95%;
    max-height: none;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.journey-modal-body {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    background: var(--light);
}

.journey-modal-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.journey-modal-text {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    padding: 24px 32px 28px;
    overflow: visible;
    z-index: 10;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.journey-modal-text h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: 0;
    text-shadow: none;
}

.journey-modal-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    white-space: pre-line;
    font-family: var(--font-sans);
    text-shadow: none;
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Easter Egg Animations */
@keyframes sparkle {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0px rgba(201, 73, 97, 0));
    }
    50% {
        transform: scale(1.15) rotate(10deg);
        filter: drop-shadow(0 0 15px rgba(201, 73, 97, 0.8));
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0px rgba(201, 73, 97, 0));
    }
}

.sparkle-animation {
    animation: sparkle 0.6s ease-in-out !important;
}

@keyframes fallDiamond {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes diamondFloat {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -80%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes sparkleFloat {
    0% {
        opacity: 0.8;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(201, 73, 97, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(201, 73, 97, 1));
    }
}

@keyframes logoGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(201, 73, 97, 0));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 20px rgba(201, 73, 97, 1));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(201, 73, 97, 0));
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes easterSlideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-40px);
    }
}

/* ============================================
   RESPONSIVE MODAL
   ============================================ */

@media (max-width: 768px) {
    .location-map-wrapper {
        height: 300px;
        margin-bottom: 30px;
        order: -1;
    }

    .map-label {
        font-size: 0.9rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .journey-modal-content {
        width: 98%;
        max-width: none;
    }

    .journey-modal-image {
        max-height: 400px;
    }

    .journey-modal-text {
        padding: 20px 20px 24px;
    }

    .journey-modal-text h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .journey-modal-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }

    #imageModal .modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }

    #imageModal .image-container {
        grid-column: auto;
        grid-row: auto;
    }

    #imageModal .modal-text {
        grid-column: auto;
        grid-row: auto;
    }

    .image-container {
        min-height: 300px;
    }

    .modal-controls {
        top: 10px;
        left: 10px;
        flex-direction: row;
    }

    #imageModal .modal-controls {
        left: 10px;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .modal-text {
        padding: 30px 25px;
    }

    .modal-text h2 {
        font-size: 1.5rem;
    }

    .modal-text p {
        font-size: 0.95rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content p {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-links {
    margin-top: 12px !important;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.legal-page main {
    padding-top: 100px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 2rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .carousel-prev {
        left: 20px;
    }

    .carousel-next {
        right: 20px;
    }

    .journey-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }

    .journey-carousel-prev {
        left: 35px;
    }

    .journey-carousel-next {
        right: 35px;
    }

    .journey-slide-content {
        padding: 60px 50px 60px 30px;
    }

    .journey-slide-number {
        font-size: 3.5rem;
    }

    .journey-slide-content h2 {
        font-size: 2rem;
    }

    .journey-slide-content p {
        font-size: 0.98rem;
        max-width: 420px;
    }

    /* Journey Timeline auf Tablet */
    .journey-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .journey-timeline-image {
        height: 240px;
    }

    .journey-carousel-dots {
        bottom: 35px;
        gap: 10px;
    }

    .appointment-banner {
        padding: 18px 16px;
    }

    .appointment-banner-content {
        padding: 20px 18px;
    }

    .appointment-text {
        font-size: 0.98rem;
    }

    .appointment-links {
        gap: 10px;
    }

    .appointment-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .section {
        padding: 80px 30px;
    }

    .section-grid {
        gap: 40px;
    }

    .journey-header-logo {
        margin-bottom: 25px;
    }

    .journey-header h2 {
        font-size: 2rem;
    }

    .journey-steps::before {
        left: 22px;
    }

    .journey-step {
        grid-template-columns: 44px 1fr 90px;
        gap: 20px;
    }

    .journey-number {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .journey-step-image {
        width: 110px;
        height: 110px;
    }

    .journey-content h3 {
        font-size: 1.2rem;
    }

    .info-bar {
        padding: 10px 30px;
    }

    .info-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .logo-img {
        height: 50px;
    }

    .info-bar {
        display: none;
    }

    .hero {
        margin-top: 70px;
    }

    .mobile-menu {
        top: 70px;
    }

    .info-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .info-item {
        flex: 1;
        min-width: 120px;
    }

    .info-divider {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 20px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-grid-large {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .section.alternate .section-image {
        order: 0;
    }

    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-three {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 40% 60%;
    }

    .modal-text {
        padding: 30px 25px;
    }

    .modal-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .modal-text p {
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .impressum-section {
        padding: 70px 24px;
    }

    .impressum-box {
        padding: 28px 24px;
    }

    .impressum-box p {
        font-size: 0.95rem;
    }

    .journey-carousel-section {
        height: 100vh;
    }

    .journey-carousel-slide {
        grid-template-columns: 1fr;
    }

    .journey-slide-background {
        position: absolute;
        z-index: 0;
    }

    .journey-slide-background::after {
        background: linear-gradient(180deg,rgba(255,255,255,0) 25%,rgba(255,255,255,1) 75%);
    }

    .journey-slide-content {
        padding: 50px 25px 35px 25px;
        background: linear-gradient(180deg,transparent 0%,rgba(255,255,255,1) 35%);
        justify-content: flex-end;
        position: relative;
        z-index: 2;
    }

    .journey-slide-number {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .journey-slide-content h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .journey-slide-content p {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .journey-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .journey-carousel-prev {
        left: 20px;
    }

    .journey-carousel-next {
        right: 20px;
    }

    .journey-carousel-dots {
        bottom: 25px;
        gap: 8px;
    }

    .journey-dot {
        width: 8px;
        height: 8px;
    }

    .journey-dot.active {
        width: 28px;
    }

    /* Journey Timeline responsive */
    .journey-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .journey-timeline-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
    }

    .logo-img {
        height: 45px;
    }

    .info-bar {
        display: none;
    }

    .mobile-info-section {
        display: block;
    }

    .hero {
        margin-top: 65px;
    }

    .mobile-menu {
        top: 65px;
    }

    .journey-header-logo {
        margin-bottom: 20px;
    }

    .journey-header h2 {
        font-size: 1.6rem;
    }

    .journey-header p {
        font-size: 0.9rem;
    }

    .journey-steps {
        gap: 25px;
        margin-bottom: 40px;
    }

    .journey-steps::before {
        left: 16px;
    }

    .journey-step {
        grid-template-columns: 36px 1fr 75px;
        gap: 15px;
    }

    .journey-step-image {
        width: 75px;
        height: 75px;
    }

    .journey-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .journey-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .journey-content p {
        font-size: 0.85rem;
    }

    .journey-image {
        margin-top: 40px;
    }

    .journey-image .section-image {
        max-width: 100%;
    }

    .info-container {
        flex-direction: column;
        gap: 10px;
    }

    .info-item {
        width: 100%;
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .section {
        padding: 40px 15px;
    }

    .section-grid {
        gap: 30px;
    }

    .section-text h3 {
        margin-top: 1.5rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .partner-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-content {
        bottom: 40px;
        max-width: 85%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 40px;
    }

    /* Journey Timeline auf Mobile */
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .journey-timeline-image {
        height: 180px;
    }

    .journey-timeline-step h3 {
        font-size: 1rem;
    }

    .journey-timeline-step p {
        font-size: 0.85rem;
    }

    .journey-timeline-number {
        font-size: 1.8rem;
    }

    .gallery-three {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
    }

    .gallery-item p {
        font-size: 0.95rem;
        padding: 12px 10px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .partner-grid a {
        padding: 12px;
    }

    .partner-grid img {
        width: 80%;
        height: 80%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-text h2 {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 20px;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on mobile */
    }

    .contact-form button {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .journey-modal-image {
        max-height: 300px;
    }

    .journey-modal-text {
        padding: 18px 16px 20px;
    }

    .journey-modal-text h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .journey-modal-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .modal-body {
        grid-template-rows: 35% 65%;
    }

    .modal-text {
        padding: 20px 18px;
    }

    .modal-text h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .modal-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .impressum-section {
        padding: 60px 16px;
    }

    .impressum-box {
        padding: 22px 16px;
    }

    .impressum-box p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   PROFILE SECTION STYLING
   ============================================ */

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    -webkit-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-image:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.profile-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(196, 169, 97, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.badge-icon {
    font-size: 1.4rem;
}

.badge-text {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.profile-title {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.profile-subtitle {
    font-size: 1.2rem;
    color: #b08a5a;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.profile-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

.profile-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.profile-highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.profile-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1;
}

.profile-team {
    background: linear-gradient(135deg, rgba(196, 169, 97, 0.08), rgba(169, 50, 50, 0.05));
    padding: 28px;
    border-radius: 14px;
    border-left: 4px solid #b08a5a;
    margin-top: 8px;
}

.team-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.profile-team p:last-child {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.about-subheading {
    font-size: 1.15rem;
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 600;
    margin: 16px 0 8px 0;
    margin-top: 20px;
}

.profile-description .about-subheading:first-child {
    margin-top: 12px;
}

.profile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cta-text {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.cta-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    width: fit-content;
}

.cta-link:hover {
    color: var(--primary);
}

/* PROFILE RESPONSIVE */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }
    
    .profile-image-wrapper {
        order: -1;
    }
    
    .profile-badge {
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   TOUCH-FRIENDLY INTERACTIONS
   ============================================ */

button,
a,
[role="button"],
.nav-link,
.mobile-nav-link,
.hero-link,
.cta-link,
.submit-btn {
    touch-action: manipulation;
}

/* ============================================
   REDUCED MOTION / ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    /* Hide interactive elements */
    .navbar,
    .mobile-menu,
    .info-bar,
    .nav-toggle,
    .carousel-nav,
    .carousel-dots,
    .appointment-banner,
    .mobile-info-section,
    .back-to-top,
    .modal,
    .submit-btn,
    footer {
        display: none !important;
    }
    
    /* Optimize for print */
    body {
        background: white;
        color: black;
        line-height: 1.6;
    }
    
    main {
        margin-top: 0;
    }
    
    .section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        color: #000;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8rem;
    }
    
    .modal,
    .hero-slider,
    .carousel-container {
        display: none !important;
    }
    
    /* Ensure proper page breaks */
    .hero-slider {
        page-break-before: always;
    }
}
