:root {
    --primary: #8BA888;
    --secondary: #C4B7A6;
    --dark: #3A4A3D;
    --light: #F5F5F0;
    --accent: #A67C52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(58, 74, 61, 0.1);
}

.navbar.scrolled {
    padding: 15px 40px;
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.logo-small {
    height: 30px;
    margin-right: 10px;
}

.logo-full {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark);
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), 
                url('https://img.welt.de/img/wirtschaft/mobile178012022/1360314467-ci23x11-w1200/Close-up-of-woman-receiving-botox-injection-in-lips.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 168, 136, 0.3);
}

.container {
    padding: 100px 20px 40px;
}

.section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.05);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 168, 136, 0.3);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--primary);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 260px;
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(139, 168, 136, 0.2);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 74, 61, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 168, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary);
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--dark);
}

.service-box p {
    font-size: 14px;
    color: #777;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 168, 136, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(58, 74, 61, 0.1);
}

.product-image {
    width: 100px;
    height: 100px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-image i {
    font-size: 40px;
    color: var(--primary);
}

.product-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.product-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(139, 168, 136, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 74, 61, 0.1);
}

.team-member.active {
    opacity: 1;
    transform: translateY(0);
}

.member-image {
    margin-bottom: 20px;
}

.member-image .image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 20px;
    width: 30px;
    margin-top: 3px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--light);
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 168, 136, 0.2);
}

.submit-button {
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 74, 61, 0.2);
}

footer {
    background-color: white;
    padding: 60px 40px 20px;
    border-top: 1px solid rgba(139, 168, 136, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(139, 168, 136, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
    color: var(--dark);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 14px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    height: 100px;
    margin-bottom: 30px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background-color: #eee;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary);
    animation: loading 2s ease forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(58, 74, 61, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .section {
        padding: 40px 20px;
    }

    .service-box {
        width: 100%;
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links, .social-links {
        margin-top: 20px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar.scrolled {
        padding: 10px 20px;
    }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #777;
}
.about-logo {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 168, 136, 0.3);
}