/* Additional theming to better match reference site */

/* Header enhancements */
.site-header { 
    box-shadow: 0 1px 0 rgba(0,0,0,0.04); 
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Navigation tabs */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin: 0 -20px;
}

.nav-tab {
    padding: 16px 32px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.nav-tab:first-child {
    border-top-left-radius: 8px;
}

.nav-tab:last-child {
    border-top-right-radius: 8px;
}

.nav-tab:hover {
    color: #0b3f77;
    background: #fff;
    border-bottom-color: #0b3f77;
}

.nav-tab.active {
    color: #0b3f77;
    background: #fff;
    border-bottom-color: #0b3f77;
    font-weight: 600;
}

.primary-nav .menu a { transition: color .2s ease; }

/* Hero visual */
.hero { position: relative; overflow: hidden; padding-top: 24px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; background: linear-gradient(175deg, transparent 40%, #0b3f77 0); }
.hero .slides { position: relative; height: 420px; border-radius: 0; background: #e8f1fb; overflow: hidden; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.hero .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; background-size: cover; background-position: center; }
.hero .slide.active { opacity: 1; }
.hero h1 { font-size: 28px; }
.hero .subtitle { font-size: 16px; }

/* Text alignment utilities */
.text-center { text-align: center; }

/* WordPress content styling */
.presentation-content,
.soins-content,
.contact-content {
    line-height: 1.6;
}

.presentation-content h2,
.presentation-content h3,
.soins-content h2,
.soins-content h3,
.contact-content h2,
.contact-content h3 {
    color: #0b3f77;
    margin-top: 2em;
    margin-bottom: 1em;
}

.presentation-content p,
.soins-content p,
.contact-content p {
    margin-bottom: 1em;
}

.presentation-content ul,
.presentation-content ol,
.soins-content ul,
.soins-content ol,
.contact-content ul,
.contact-content ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.presentation-content li,
.soins-content li,
.contact-content li {
    margin-bottom: 0.5em;
}

/* WordPress block editor support */
.presentation-content .wp-block-image,
.soins-content .wp-block-image,
.contact-content .wp-block-image {
    margin: 2em 0;
}

.presentation-content .wp-block-quote,
.soins-content .wp-block-quote,
.contact-content .wp-block-quote {
    border-left: 4px solid #0b3f77;
    padding-left: 1em;
    font-style: italic;
    margin: 2em 0;
}

/* Page content styles */
.presentation-content .team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.presentation-content .member {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #0b3f77;
}

.presentation-content .member h3 {
    color: #0b3f77;
    margin-bottom: 12px;
}

/* Soins page */
.soins-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.soin-category {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    border-top: 4px solid #0b3f77;
}

.soin-category h3 {
    color: #0b3f77;
    margin-bottom: 16px;
}

.soin-category ul {
    list-style: none;
    padding: 0;
}

.soin-category li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.soin-category li::before {
    content: "✓";
    color: #0b3f77;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modalites {
    margin-top: 48px;
    padding: 24px;
    background: #e8f1fb;
    border-radius: 8px;
}

.modalite-item {
    margin: 16px 0;
    padding: 16px;
    background: white;
    border-radius: 6px;
}

.modalite-item h4 {
    color: #0b3f77;
    margin-bottom: 8px;
}

/* Contact page */
.contact-content {
    max-width: 800px;
}

.contact-block {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #0b3f77;
}

.contact-block h3,
.contact-block h4 {
    color: #0b3f77;
    margin-bottom: 12px;
}

.phone-number {
    font-size: 18px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.action-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.contact-button {
    display: inline-block;
    margin: 8px 4px;
    padding: 12px 24px;
    background: #0b3f77;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background: #0a356a;
}

/* Professional button */
.cta-button-pro {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(90deg, #0b3f77 0%, #1976d2 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(11,63,119,0.08);
    text-decoration: none;
    letter-spacing: 0.5px;
    border: none;
    transition: background 0.3s, box-shadow 0.3s;
}

.cta-button-pro:hover {
    background: linear-gradient(90deg, #1976d2 0%, #0b3f77 100%);
    box-shadow: 0 4px 16px rgba(11,63,119,0.15);
    color: #fff;
}

/* Cards */
.card { transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.06); transform: translateY(-2px); }

/* Footer tweaks */
.site-footer a { color: #0b5bd3; }

/* Blue features strip */
.features-strip { background: #0b3f77; color: #ffffff; padding: 36px 0; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature { text-align: center; padding: 12px; }
.feature h3 { color: #ffffff; margin: 10px 0 6px; }
.feature p { color: #d6e4f5; margin: 0; font-size: 14px; }
.feature .icon { font-size: 40px; line-height: 1; display: inline-block; }


@media (max-width: 1024px){
	.hero .slides { height: 360px; }
}

@media (max-width: 768px){
	.features { grid-template-columns: 1fr; }
	.hero .slides { height: 240px; }
	
	/* Responsive navigation */
	.nav-tabs {
		flex-wrap: wrap;
		margin: 0 -10px;
	}
	
	.nav-tab {
		padding: 12px 16px;
		font-size: 14px;
		flex: 1;
		text-align: center;
		min-width: calc(50% - 2px);
	}
}


