@font-face {
    font-family: 'LuxusBrut';
    src: url('fonts/LuxusBrut.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MrEaves';
    src: url('fonts/MrEavesXLModNarOT-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
    --turquoise: #00B2A9;
    --gold: #C8A951;
    --light-gold: #F5F1E3;
    --dark-gray: #333333;
    --light-gray: #F7F7F7;
    --white: #FFFFFF;
    --coming-soon-bg: #f0f0f0;
    --text-color: #444444;
    --border-color: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

section {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1;
}

.logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    position: relative;
    margin-left: 2rem;
}

.main-menu a {
    font-family: 'Segoe UI', sans-serif;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dark-gray);
    transition: width 0.3s;
}

.main-menu > li > a:hover::after {
    width: 100%;
}

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

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
}

.dropdown-content a.basisch {
    color: var(--gold);
}

.dropdown-content a.coming-soon {
    color: var(--dark-gray);
    opacity: 0.7;
    position: relative;
}

.dropdown-content a.coming-soon::after {
    content: "Bald verfügbar";
    position: absolute;
    right: 10px;
    font-size: 0.75rem;
    background-color: var(--light-gray);
    padding: 2px 6px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 2rem 0;
}

/* Video Section */
.video-section {
    padding: 4rem 10%;
    background-color: var(--white);
    margin-bottom: 2rem;
}

.video-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.video-container {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    background-color: #f5f1e3;
}

.video-upload {
    margin-top: 10px;
    text-align: center;
}

.video-upload label {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.video-upload label:hover {
    background-color: #b69a46;
}

.video-upload input[type="file"] {
    display: none;
}

.video-text {
    flex: 1;
    min-width: 300px;
}

.video-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.video-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .video-section .container {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .video-text {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .video-text h2 {
        text-align: center;
    }
    
    .video-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .video-text p {
        text-align: center;
    }
}

.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.watercolor-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/healthyhead.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.cta-button {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #B69A46;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Featured Products Section */
.featured-products {
    padding: 3rem 10%;
    text-align: center;
}

.featured-products h2, .events h2, .locations h2, .philosophy-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.featured-products h2:after, .events h2:after, .locations h2:after, .philosophy-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

/* Featured Product Container */
.featured-product-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    padding: 2rem;
    text-align: left;
}

.featured-product-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.featured-product-image img {
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background-color: var(--white);
}

.featured-product-details {
    flex: 1;
    min-width: 300px;
}

.featured-product-details h3 {
    font-family: 'MrEaves', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.featured-product-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.product-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.product-benefits li i {
    color: var(--gold);
}

.gold-text {
    color: var(--gold);
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.product-button {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'MrEaves', sans-serif;
    text-decoration: none;
}

.product-button:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Upcoming Products */
.upcoming-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.upcoming-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.upcoming-product {
    width: 200px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.upcoming-product:hover {
    transform: translateY(-5px);
}

.upcoming-image {
    height: 120px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
}

.upcoming-product:nth-child(1) .upcoming-image {
    background-image: url('images/healthymoments_morning_Kunst.jpg');
}

.upcoming-product:nth-child(2) .upcoming-image {
    background-image: url('images/healthymoments_ayurveda_Kunst.jpg');
}

.upcoming-product:nth-child(3) .upcoming-image {
    background-image: url('images/healthymoments_relax_Kunst.jpg');
}

.upcoming-product:nth-child(4) .upcoming-image {
    background-image: url('images/healthymoments_awake_Kunst.jpg');
}

.upcoming-product h4 {
    font-family: 'MrEaves', sans-serif;
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 0.8rem;
    text-align: center;
}

/* Events Section */
.events {
    padding: 3rem 10%;
    background-color: var(--light-gray);
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-details {
    flex: 1;
    padding: 2rem;
}

.event-details h3 {
    font-family: 'MrEaves', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.event-details p {
    margin-bottom: 0.75rem;
}

.booking-status {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.available {
    color: green;
    font-weight: bold;
}

.event-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'MrEaves', sans-serif;
    text-decoration: none;
}

.event-button:hover {
    background-color: var(--dark-gray);
}

.event-image {
    flex: 1;
    min-height: 350px;
    background: url('images/healthymoments_yoga_Foto.jpg') no-repeat center/cover;
}

/* Locations Section */
.locations {
    padding: 3rem 10%;
}

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

.location-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-image {
    height: 250px;
    overflow: hidden;
}

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

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

.location-info {
    padding: 1.5rem;
    background-color: var(--white);
}

.location-info h3 {
    font-family: 'MrEaves', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.location-info p {
    margin-bottom: 0.75rem;
}

.location-button {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'MrEaves', sans-serif;
    text-decoration: none;
}

.location-button:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Philosophy Section */
.philosophy {
    position: relative;
    padding: 3rem 10%;
    background-color: var(--light-gray);
    margin-top: 2rem;
    overflow: hidden;
}

.watercolor-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: url('images/healthymoments_accent_Kunst.jpg') no-repeat center/cover;
    opacity: 1;
    border-radius: 50%;
    z-index: 0;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.philosophy-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.philosophy-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.philosophy-button {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'MrEaves', sans-serif;
}

.philosophy-button:hover {
    background-color: var(--dark-gray);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-section h3 {
    font-family: 'MrEaves', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-section p {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--gold);
}

.social-icons i {
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Special text styling */
.accent-text {
    color: var(--gold);
    font-weight: bold;
}

.basisch-text {
    color: var(--gold);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-menu li {
        margin: 0;
        width: 100%;
    }
    
    .main-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        position: relative;
    }
    
    .dropdown-toggle-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle-icon i {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        border: none;
        width: 100%;
        background-color: var(--light-gray);
    }
    
    .dropdown.active .dropdown-content {
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .dropdown-content a {
        padding-left: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .featured-products, .events, .locations, .philosophy {
        padding: 3rem 5%;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .featured-product-image, .featured-product-details {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-product-details {
        text-align: center;
    }
    
    .product-benefits li {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .philosophy-content p {
        padding: 0 1rem;
    }
}
