/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Luxuriöse Premium Farbpalette */
:root {
    --primary-color: #1a1a1a; /* Elegantes Schwarz */
    --secondary-color: #c9a96e; /* Champagner Gold */
    --accent-color: #8b4513; /* Warmes Bronze */
    --tertiary-color: #2c2c2c; /* Anthrazit */
    --luxury-gold: #d4af37; /* Premium Gold */
    --platinum: #e5e4e2; /* Platin */
    --rose-gold: #e8b4a0; /* Roségold */
    --deep-black: #000000; /* Tiefes Schwarz */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #fafafa; /* Helles Premium Grau */
    --bg-dark: #f5f5f5; /* Dunkleres Premium Grau */
    --bg-gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    --bg-gradient-gold: linear-gradient(135deg, #c9a96e 0%, #d4af37 50%, #c9a96e 100%);
    --white: #ffffff;
    --shadow-luxury: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.25);
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--bg-gradient-gold);
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--bg-gradient-luxury);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--secondary-color);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: var(--shadow-luxury);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c9a96e;
    white-space: nowrap;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Legacy support für andere Logo-Referenzen */
.logo {
    display: flex;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Luxury Hero Section */
.hero {
    height: 100vh;
    background: var(--bg-gradient-luxury);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Etwas heller für bessere Lesbarkeit */
    transition: opacity 0.3s ease;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%), url('../images/hero-thai.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
}

.video-fallback i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-fallback p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.7) 0%, 
        rgba(44, 44, 44, 0.5) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-gradient-gold);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--lotus-pink);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both, subtitleFloat 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Thailand-inspirierte Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    }
    to {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 30px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 107, 53, 0.3);
    }
}

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

@keyframes overlayPulse {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 0.6;
    }
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-colorful);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.service-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-prices {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.duration {
    font-weight: 500;
    color: var(--text-dark);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Team Section */
.team {
    background: var(--bg-light);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image .image-placeholder {
    width: 150px;
    height: 150px;
    background: var(--bg-gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
}

.member-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Avatar Platzhalter Styles */
.avatar-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
}

.avatar-placeholder.female .avatar-circle {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
}

.avatar-placeholder.male .avatar-circle {
    background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
}

.avatar-initials {
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.team-member:hover .avatar-circle {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item .image-placeholder,
.gallery-item .video-placeholder {
    height: 250px;
    background: var(--bg-gradient-luxury);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
}

.gallery-item .video-placeholder.large {
    height: 350px;
}

.gallery-item .image-placeholder i,
.gallery-item .video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-item .video-placeholder i {
    animation: pulse 2s ease-in-out infinite;
}

/* About Section mit luxuriösem Design */
.about {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Luxury Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Luxury Form Styling */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.input-group.focused {
    z-index: 10;
}

.input-group.filled label,
.input-group.focused label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: var(--white);
    padding: 0 0.5rem;
    z-index: 10;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1.5rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    padding-right: 2rem;
}

.input-group textarea {
    width: 100%;
    padding: 1.5rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:valid + label,
.input-group select:not([value=""]):not([value="Service wählen"]) + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: var(--white);
    padding: 0 0.5rem;
    z-index: 10;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-bottom-color: var(--secondary-color);
}

/* Select Option Styling */
.input-group select option {
    padding: 0.75rem;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
}

.input-group select option:first-child {
    color: var(--text-light);
    font-style: italic;
}

/* Select-Box spezielle Label-Behandlung */
.input-group select + label {
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Wenn Select-Box einen Wert hat (nicht die erste Option) */
.input-group select:not([value=""]):valid + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: var(--white);
    padding: 0 0.5rem;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient-gold);
    transition: width 0.3s ease;
}

.input-group input:focus ~ .input-border,
.input-group select:focus ~ .input-border,
.input-group textarea:focus ~ .input-border {
    width: 100%;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Contact Info Luxury Styling */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card.luxury {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

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

.contact-card.luxury small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.opening-hours.luxury {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.opening-hours.luxury h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Öffnungszeiten Actions Layout */
.opening-hours .quick-actions,
.opening-hours .direct-email {
    display: flex;
    justify-content: center;
    align-items: center;
}

.opening-hours .quick-actions {
    margin-bottom: 1rem;
}

.opening-hours .direct-email {
    margin-top: 0.5rem;
}

.hours-item.special {
    background: rgba(201, 169, 110, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-icon:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-icon:active {
    transform: translateY(-1px);
}

/* Icon-Button Spezial-Farben */
.btn-icon:hover .fa-phone {
    color: var(--dark-bg);
}

.btn-icon:hover .fa-whatsapp {
    color: #25D366;
}

.btn-icon:hover .fa-envelope {
    color: var(--dark-bg);
}

/* Quick Actions Layout verbessern */
.quick-actions {
    gap: 1.5rem !important;
    margin-top: 2rem;
}

.direct-email {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Mobile Icon-Button Optimierungen */
@media (max-width: 768px) {
    .btn-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.2rem;
        border-width: 2px;
        border-radius: 50% !important;
        flex-shrink: 0;
    }
    
    .quick-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.2rem !important;
        margin: 1.5rem 0;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .direct-email {
        display: flex !important;
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    .opening-hours .quick-actions,
    .opening-hours .direct-email {
        justify-content: center !important;
    }
    
    /* Perfekte Kreise sicherstellen */
    .avatar-circle,
    .btn-icon {
        aspect-ratio: 1/1;
    }
    
    /* Touch-optimierte Hover-Effekte */
    .btn-icon:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
    }
    
    /* Öffnungszeiten Container optimieren */
    .opening-hours.luxury {
        padding: 1.5rem;
    }
}

/* reCAPTCHA Styling */
.recaptcha-notice {
    margin: 1rem 0;
    text-align: center;
    padding: 1rem;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.recaptcha-notice small {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.recaptcha-notice i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.recaptcha-notice a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.recaptcha-notice a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* reCAPTCHA Badge anpassen */
.grecaptcha-badge {
    visibility: hidden;
}

/* Video Performance Optimierungen */
/* Legal Pages Styling */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    background: var(--light-bg);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

.legal-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.info-block {
    background: rgba(201, 169, 110, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.info-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.info-block a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* Mobile Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px 0;
    }
    
    .legal-content {
        margin: 0 10px; /* Reduzierte seitliche Abstände */
        padding: 1.5rem; /* Kompakteres Padding */
        border-radius: 10px; /* Kleinere Border-Radius */
    }
    
    .legal-content h1 {
        font-size: 1.8rem; /* Kleinerer Titel */
        line-height: 1.2;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 1rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .info-block {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .info-block p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Telefonnummer und E-Mail optimieren */
    .info-block a {
        word-break: break-all;
        line-height: 1.4;
        display: inline-block;
    }
    
    /* Verhindern dass Titel aus der Box rutscht */
    .legal-content * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile Link-Optimierungen */
    .info-block ul {
        padding-left: 1rem;
        margin: 1rem 0;
    }
    
    .info-block li {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .info-block li a {
        display: inline-block;
        padding: 0.3rem 0;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Mobile Video Optimierungen */
@media (max-width: 768px) {
    .hero-video-bg {
        /* Video auf kleinen Bildschirmen reduzieren für Performance */
        opacity: 0.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-bg {
        /* Respektiere Bewegungspräferenzen */
        display: none;
    }
    
    .video-fallback {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .recaptcha-notice small {
        flex-direction: column;
        gap: 0.25rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.opening-hours {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.opening-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.day {
    font-weight: 500;
    color: var(--text-dark);
}

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

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    /* Mobile Logo Optimierungen */
    .logo-icon {
        height: 35px;
        width: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        margin-left: 8px;
    }
    
    .nav-container {
        padding: 0 15px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
    
    .service-image {
        height: 180px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-card,
    .opening-hours {
        padding: 1.5rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .contact-card a {
        word-break: break-all;
        font-size: 0.85rem;
    }
}

/* E-Mail Link Optimierung */
.email-link {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Smooth scrolling behavior for all browsers */
html {
    scroll-behavior: smooth;
}

/* Loading animation for service cards */
.service-card {
    animation: slideInUp 0.6s ease-out forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Thailand-Lotus-Blüten-Effekt */
@keyframes lotusBloom {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Goldener Schimmer-Effekt */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes luxuryFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Service Cards mit Lotus-Animation */
.service-card {
    animation: lotusBloom 0.8s ease-out forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Luxury Section Titel */
.section-title {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bg-gradient-gold);
    border-radius: 2px;
}