/* ============================================
   ONITANI - Seelenmusik Website
   Modern, Light, Golden Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --gold-light: #f5e6c8;
    --gold: #c9a84c;
    --gold-dark: #a07c2a;
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
    --gold-shimmer: linear-gradient(135deg, #f5e6c8, #c9a84c, #e8d5a3);
    --bg-cream: #faf7f0;
    --bg-white: #ffffff;
    --bg-warm: #f8f4eb;
    --bg-section: #fdf9f1;
    --text-dark: #3a3226;
    --text-body: #5a4e3e;
    --text-light: #8a7e6e;
    --text-white: #ffffff;
    --border-gold: rgba(201, 168, 76, 0.2);
    --shadow-soft: 0 4px 30px rgba(201, 168, 76, 0.08);
    --shadow-card: 0 8px 40px rgba(201, 168, 76, 0.1);
    --shadow-hover: 0 12px 50px rgba(201, 168, 76, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--gold-dark);
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 2rem;
    border: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero .btn-outline {
    color: var(--gold-dark);
    border-color: var(--gold);
}

.hero .btn-outline:hover {
    background: var(--gold);
    color: var(--text-white);
}

/* --- Navigation (Desktop) --- */
.nav-desktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    transition: all var(--transition);
    height: var(--nav-height);
}

.nav-desktop.scrolled {
    background: rgba(250, 247, 240, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    margin: 0 3rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: transform var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-body);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 8px;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu > a,
.nav-sub-dropdown > a.nav-sub-toggle {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    transition: all var(--transition);
}

.nav-dropdown-menu > a:hover,
.nav-sub-dropdown > a.nav-sub-toggle:hover {
    background: var(--bg-warm);
    color: var(--gold-dark);
    padding-left: 28px;
}

/* Sub-Dropdown (Netzwerk flyout) */
.nav-sub-dropdown {
    position: relative;
}

.nav-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.nav-sub-toggle svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all var(--transition);
}

.nav-sub-dropdown:hover .nav-sub-toggle svg {
    opacity: 1;
    transform: translateX(2px);
}

.nav-sub-menu {
    position: absolute;
    left: 100%;
    top: -12px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 180px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: all var(--transition);
}

.nav-sub-dropdown:hover .nav-sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.nav-sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    transition: all var(--transition);
}

.nav-sub-menu a:hover {
    background: var(--bg-warm);
    color: var(--gold-dark);
    padding-left: 28px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
    padding-top: var(--nav-height);
}

/* Hero Slider */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-slide-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: calc(var(--nav-height) + 1rem) 2rem 160px;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-description-light {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

#heroSlide2 .hero-tagline {
    color: var(--gold-light);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

#heroSlide2 h1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-light {
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero-btn-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot-active {
    background: var(--gold);
    transform: scale(1.15);
}

.hero-dot:hover {
    background: var(--gold-light);
}

/* Hero Golden Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(245, 230, 200, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #faf7f0 0%, #f5efe3 40%, #ede4d3 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    animation: heroGlow 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 230, 200, 0.25) 0%, transparent 70%);
    animation: heroGlow 18s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(3%, -3%) scale(1.1); opacity: 1; }
}

/* Golden Twinkling Stars */
.hero-golden-rain {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-golden-rain span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(201, 168, 76, 1) 0%, rgba(201, 168, 76, 0) 70%);
    border-radius: 50%;
    animation: twinkle ease-in-out infinite;
    opacity: 0;
    box-shadow: 0 0 6px 1px rgba(201, 168, 76, 0.4);
}

.hero-golden-rain span:nth-child(1)  { top: 12%; left: 8%;  width: 5px; height: 5px; animation-duration: 3s;   animation-delay: 0s; }
.hero-golden-rain span:nth-child(2)  { top: 25%; left: 15%; width: 3px; height: 3px; animation-duration: 4s;   animation-delay: 0.8s; }
.hero-golden-rain span:nth-child(3)  { top: 18%; left: 25%; width: 4px; height: 4px; animation-duration: 3.5s; animation-delay: 1.5s; }
.hero-golden-rain span:nth-child(4)  { top: 40%; left: 10%; width: 3px; height: 3px; animation-duration: 5s;   animation-delay: 0.3s; }
.hero-golden-rain span:nth-child(5)  { top: 30%; left: 35%; width: 6px; height: 6px; animation-duration: 4s;   animation-delay: 2s; box-shadow: 0 0 10px 2px rgba(201, 168, 76, 0.5); }
.hero-golden-rain span:nth-child(6)  { top: 55%; left: 20%; width: 3px; height: 3px; animation-duration: 3.8s; animation-delay: 1s; }
.hero-golden-rain span:nth-child(7)  { top: 15%; left: 48%; width: 4px; height: 4px; animation-duration: 4.5s; animation-delay: 0.5s; }
.hero-golden-rain span:nth-child(8)  { top: 35%; left: 55%; width: 3px; height: 3px; animation-duration: 3.2s; animation-delay: 2.5s; }
.hero-golden-rain span:nth-child(9)  { top: 60%; left: 42%; width: 5px; height: 5px; animation-duration: 5s;   animation-delay: 0.7s; box-shadow: 0 0 10px 2px rgba(201, 168, 76, 0.5); }
.hero-golden-rain span:nth-child(10) { top: 22%; left: 65%; width: 4px; height: 4px; animation-duration: 3.5s; animation-delay: 1.8s; }
.hero-golden-rain span:nth-child(11) { top: 45%; left: 72%; width: 3px; height: 3px; animation-duration: 4.2s; animation-delay: 3s; }
.hero-golden-rain span:nth-child(12) { top: 70%; left: 60%; width: 4px; height: 4px; animation-duration: 3.8s; animation-delay: 0.2s; }
.hero-golden-rain span:nth-child(13) { top: 10%; left: 80%; width: 6px; height: 6px; animation-duration: 4.5s; animation-delay: 1.2s; box-shadow: 0 0 10px 2px rgba(201, 168, 76, 0.5); }
.hero-golden-rain span:nth-child(14) { top: 50%; left: 88%; width: 3px; height: 3px; animation-duration: 3s;   animation-delay: 2.2s; }
.hero-golden-rain span:nth-child(15) { top: 65%; left: 78%; width: 4px; height: 4px; animation-duration: 5.5s; animation-delay: 0.9s; }
.hero-golden-rain span:nth-child(16) { top: 38%; left: 92%; width: 3px; height: 3px; animation-duration: 4s;   animation-delay: 3.5s; }
.hero-golden-rain span:nth-child(17) { top: 75%; left: 30%; width: 5px; height: 5px; animation-duration: 3.5s; animation-delay: 1.6s; box-shadow: 0 0 10px 2px rgba(201, 168, 76, 0.5); }
.hero-golden-rain span:nth-child(18) { top: 80%; left: 50%; width: 3px; height: 3px; animation-duration: 4.8s; animation-delay: 0.4s; }
.hero-golden-rain span:nth-child(19) { top: 28%; left: 5%;  width: 4px; height: 4px; animation-duration: 3.2s; animation-delay: 2.8s; }
.hero-golden-rain span:nth-child(20) { top: 58%; left: 95%; width: 4px; height: 4px; animation-duration: 4.5s; animation-delay: 1.3s; }

@keyframes twinkle {
    0%   { opacity: 0; transform: scale(0.5); }
    50%  { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media (max-width: 768px) {
    .hero-wave svg {
        height: 50px;
    }

    .hero-slide .hero-content {
        padding: calc(var(--nav-height) + 0.5rem) 1.25rem 130px;
    }

    .hero-logo {
        width: 110px;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-dots {
        bottom: 90px;
    }

    .hero-scroll {
        bottom: 55px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 2rem;
    animation: fadeInScale 1.2s ease-out;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero h1 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-white);
}

.section-warm {
    background: var(--bg-section);
}

/* --- About / Portrait Section --- */
.portrait-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portrait-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.portrait-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portrait-image:hover img {
    transform: scale(1.03);
}

.portrait-text h2 {
    margin-bottom: 1rem;
}

.portrait-text p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.portrait-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(245, 230, 200, 0.3));
    color: var(--gold-dark);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-card .btn {
    margin-top: 1.5rem;
}

/* --- Reisen Cards --- */
.reisen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reise-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.reise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reise-card-badge {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
}

.badge-soldout {
    background: #c0392b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
}

.reise-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.reise-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reise-card:hover .reise-card-img img {
    transform: scale(1.05);
}

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

.reise-card-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.reise-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reise-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reise-card-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 16px;
}

/* --- Reise Detail Page --- */
.reise-detail-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.reise-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reise-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.reise-detail-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    color: #fff;
    max-width: 800px;
}

.reise-detail-hero .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.reise-detail-hero .reise-card-date {
    color: var(--gold-light);
    font-size: 1rem;
}

/* --- Anmelde-Formular Steps --- */
.form-steps {
    max-width: 700px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.form-step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    background: transparent;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.step-dot.completed {
    background: var(--gold-dark);
    color: #fff;
    border-color: var(--gold-dark);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.form-price-box {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-price-box .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.form-price-box .price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* --- Praxis Duo Grid --- */
.praxis-duo {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .praxis-duo {
        grid-template-columns: 1fr;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* --- Praxis Video --- */
.praxis-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.praxis-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
    box-shadow: 
        0 0 0 4px rgba(201, 168, 76, 0.08),
        0 8px 30px rgba(201, 168, 76, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    background: var(--text-dark);
}

.praxis-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .praxis-video-frame {
        border-radius: var(--radius-sm);
    }
}

/* --- Konzerte --- */
.konzert-filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.konzert-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.konzert-filter-btn.active {
    background: var(--gold-gradient);
    color: #fff;
    border-color: var(--gold);
}

.konzert-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.konzert-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-gold);
    transition: background var(--transition);
}

.konzert-item:first-child {
    border-top: 1px solid var(--border-gold);
}

.konzert-item:hover {
    background: var(--bg-warm);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: var(--radius-sm);
}

.konzert-nr {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 1px solid var(--border-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.konzert-info {
    flex: 1;
    min-width: 0;
}

.konzert-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.konzert-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.konzert-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.konzert-detail {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 480px) {
    .konzert-item {
        gap: 0.75rem;
    }

    .konzert-nr {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .konzert-title {
        font-size: 1rem;
    }

    .konzert-filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* --- Events Section --- */
.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
    align-items: center;
}

.event-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.event-date {
    text-align: center;
    min-width: 80px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(245, 230, 200, 0.2));
    border-radius: var(--radius-sm);
}

.event-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 4px;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -1.5rem;
    margin-right: 0.25rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* --- Music / Shop Preview --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.music-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all var(--transition);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

a.music-card {
    color: inherit;
    text-decoration: none;
}

a.music-card:hover {
    color: inherit;
}

.music-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.music-card:hover .music-card-image img {
    transform: scale(1.05);
}

.music-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.2);
    opacity: 0;
    transition: opacity var(--transition);
}

.music-card:hover .music-card-play {
    opacity: 1;
}

.music-card-play svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

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

.music-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.music-card-body p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.05));
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Page Header (Subpages) --- */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-header h1 {
    position: relative;
    z-index: 1;
}

.page-header .section-subtitle {
    position: relative;
    z-index: 1;
}

/* --- Content Sections for Subpages --- */
.content-section {
    padding: 80px 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(245, 230, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

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

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* --- Bank Details --- */
.bank-details {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.bank-details h4 {
    margin-bottom: 1rem;
}

.bank-details p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Mobile Bottom Navigation --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.mobile-nav-item svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.3;
    opacity: 0.85;
    transition: all var(--transition);
}

.mobile-nav-item:hover svg,
.mobile-nav-item.active svg {
    opacity: 1;
    stroke-width: 1.5;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--gold);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Mobile More Menu */
.mobile-more-menu {
    position: fixed;
    bottom: calc(60px + env(safe-area-inset-bottom));
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    padding: 1.5rem;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-more-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mobile-more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-more-item:hover {
    background: var(--bg-warm);
    color: var(--gold-dark);
}

.mobile-more-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    /* Mobile top bar */
    .mobile-top-bar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(250, 247, 240, 0.95);
        backdrop-filter: blur(20px);
        height: 60px;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid var(--border-gold);
    }

    .mobile-top-bar img {
        height: 40px;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }

    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    .portrait-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-logo {
        width: 140px;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }
}

@media (min-width: 1025px) {
    .mobile-top-bar {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .event-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-more-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .music-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-slide .hero-content {
        padding: calc(var(--nav-height) + 0.25rem) 1rem 120px;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.82rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-buttons .btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .hero-dots {
        bottom: 75px;
    }

    .hero-scroll {
        bottom: 42px;
    }

    .hero-wave svg {
        height: 40px;
    }
}

@media (max-width: 375px) {
    .hero-slide .hero-content {
        padding: calc(var(--nav-height)) 0.75rem 110px;
    }

    .hero-logo {
        width: 75px;
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hero-dots {
        bottom: 68px;
    }

    .hero-scroll {
        bottom: 36px;
    }
}

/* --- Utility --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Gold line decoration */
.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
}

/* Image placeholder for development */
.img-placeholder {
    background: linear-gradient(135deg, var(--bg-warm), rgba(201, 168, 76, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    min-height: 300px;
}
