/* CSS Variables - Inspired by sophisticated wellness aesthetic */
:root {
    --primary-color: #af8f58;        /* Warm gold/tan - sophisticated accent */
    --secondary-color: #d2af9c;      /* Soft taupe for secondary actions */
    --dark-color: #21211e;           /* Deep charcoal for text and dark sections */
    --cream: #f9f0bb;                /* Cream for elegant contrast */
    --light-bg: #faf8f5;             /* Warm off-white background */
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e8e5e0;
    --transition: all 0.3s ease;
    --shadow-soft: 0 4px 44px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6.67em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    letter-spacing: 5px;
}

h2 {
    font-size: 3rem;
    letter-spacing: 4px;
}

h3 {
    font-size: 2.2rem;
    letter-spacing: 3px;
}

h4 {
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.intro-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    color: var(--dark-color);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    transition: var(--transition);
    text-transform: uppercase;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.lang-separator {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-color);
    margin: 4px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #3a3a35 100%);
    color: var(--cream);
    padding: 200px 0 120px;
    margin-top: 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(249,240,187,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(33, 33, 30, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--cream);
    font-size: 5rem;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--cream);
    opacity: 0.9;
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #9a7d4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(175, 143, 88, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-color);
}

.values-list {
    list-style: none;
    margin-bottom: 2rem;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-color);
}

.credentials-intro {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.credentials {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.credentials li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-color);
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

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

.service-feature {
    margin-bottom: 6rem;
    position: relative;
    padding-top: 3rem;
}

.service-feature:last-of-type {
    margin-bottom: 4rem;
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: -100px;
    left: 0;
    letter-spacing: 5px;
}

.service-feature-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-feature.reverse .service-feature-content {
    grid-template-columns: 1fr 1.2fr;
}

.service-feature-text h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.service-feature-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-feature-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.9;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-location {
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Additional Services */
.additional-services {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.subsection-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.service-card {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    color: var(--text-light);
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(175, 143, 88, 0.1);
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    padding: 1rem;
}

.form-message.success {
    color: #2d7a3e;
    background: #d4edda;
}

.form-message.error {
    color: #842029;
    background: #f8d7da;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.sublocation {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--light-bg) 100%);
    color: var(--text-color);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .service-feature-content,
    .service-feature.reverse .service-feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

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

    .lang-switcher {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    section {
        padding: 80px 0;
    }

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

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

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

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

    .service-number {
        font-size: 4rem;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
}
