:root {
    --primary-green: #7a946e;
    --primary-magenta: #d94b93;
    --light-green: #bcd4b4;
    --soft-cream: #f7f4ed;
    --warm-white: #f5f1e9;
    --neutral-beige: #e8e1d5;
    --dark-green: #5c6e54;
    --gold: #c19a49;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
    --black: #212529;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.7;
    background-color: var(--light-green);
}

/* Header */
.navbar {
    background-color: var(--light-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile menu background */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-magenta) !important;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        margin-top: 10px;
    }
    .navbar-nav .nav-link {
        color: #fff !important;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #fff !important;
        text-decoration: underline;
    }
    .dropdown-menu {
        background-color: var(--primary-magenta) !important;
    }
    .dropdown-item {
        color: #fff !important;
    }
    .dropdown-item:hover, .dropdown-item:focus {
        background-color: #b83a7a !important;
        color: #fff !important;
    }
}

.navbar-brand img {
    height: 85px;
    border-radius: 42.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.navbar-nav .nav-link {
    color: var(--dark-green);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-magenta);
}

/* Hero Section */
.hero {
    background-color: var(--light-green);
    background-image: linear-gradient(135deg, rgba(118, 142, 117, 0.8) 0%, rgba(217, 75, 147, 0.4) 100%);
    padding: 100px 0;
    margin-bottom: 50px;
}

.hero h1 {
    color: var(--white);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-btn {
    background-color: var(--primary-magenta);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
.section {
    padding: 70px 0;
}

.section-title {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-magenta);
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--warm-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

/* Custom card title styling to prevent text wrapping issues */
.card-title, .price-card h3 {
    hyphens: manual;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 0 5px;
    text-align: center;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Behandelingen cards styling */
.behandelingen-card {
    background-color: #7C8F75 !important;
    border-radius: 10px !important;
    height: 100% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.behandelingen-card .card-title {
    color: #000000 !important;
    font-weight: 600 !important;
}

.behandelingen-card .card-text {
    color: #FFFFFF !important;
}

.behandelingen-card .card-link {
    color: var(--primary-magenta) !important;
    font-weight: 600 !important;
}

.card-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-magenta);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--dark-green);
}

.card-link:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s;
}

.card-link:hover:after {
    transform: translateX(5px);
}

/* Feature Box */
.feature-box {
    background-color: #7C8F75;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--white);
    margin-bottom: 0;
}

/* About Section */
.about-img {
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Pricing Section */
.price-card {
    background-color: var(--warm-white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-magenta);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 20px;
    white-space: nowrap;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* Horizontally center buttons in price cards */
.button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 70px; /* Fixed height for button container */
    margin-top: auto;
    padding-top: 15px;
}

.pricing-row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--warm-white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-magenta);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author small {
    color: var(--dark-gray);
}

/* Contact Section */
.contact-info {
    margin-bottom: 40px;
}

.contact-info i {
    color: var(--primary-magenta);
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-info h4 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-form .form-control {
    border-radius: 0;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

.contact-form button {
    background-color: var(--primary-magenta);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color: var(--dark-green);
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-magenta);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-magenta);
    transform: translateY(-3px);
}

.social-links i {
    color: var(--white);
    font-size: 1.2rem;
}

/* List Item with Icon */
.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.icon-list li:before {
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-magenta);
}

/* Alert styling */
.alert-warning, .alert-success, .alert-primary {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: var(--warm-white);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 60px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

/* Custom animations */
.fade-in {
    animation: fadeIn 1s ease-in;
    opacity: 1 !important;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

.opacity-0 {
    opacity: 1 !important; /* Override to make sure content is visible */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Cupping specific styles */
.treatment-list {
    background-color: var(--warm-white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.treatment-list h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.contraindication-list li {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.highlight-box {
    background-color: var(--warm-white);
    border-left: 3px solid var(--primary-magenta);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.highlight-box h4 {
    color: var(--primary-magenta);
    margin-bottom: 10px;
}

.highlight-box p {
    margin-bottom: 0;
}

.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.circle-icon i {
    color: var(--white);
    font-size: 2rem;
}

/* Behandelingen icon */
.behandelingen-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background-color: var(--warm-white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    transition: transform 0.3s !important;
}

.behandelingen-icon i {
    color: var(--primary-magenta) !important;
    font-size: 1.5rem !important;
}

.trauma-symptoms {
    padding: 20px;
    background-color: var(--warm-white);
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.trauma-symptoms h4 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.trauma-symptoms ul {
    columns: 2;
}

@media (max-width: 767.98px) {
    .trauma-symptoms ul {
        columns: 1;
    }
}

/* Text alignment fixes for proper indentation */
.treatment-list ul.list-unstyled li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.treatment-list ul.list-unstyled li i {
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 2px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.icon-list li:before {
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 2px;
}
