/*
Theme Name: Cambridge French Tuition
Description: Professional French language tuition theme with therapeutic, nature-inspired design
Version: 1.0
Author: Custom Theme
*/

:root {
    --sage-green: #a8b5a0;
    --soft-green: #c4d1bd;
    --mint-cream: #f4f7f4;
    --white: #ffffff;
    --warm-white: #fefefe;
    --text-dark: #2c3e2d;
    --text-medium: #4a5c4b;
    --text-light: #6b7c6c;
    --accent-gold: #d4af37;
    --shadow-soft: rgba(168, 181, 160, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.site-title::after {
    content: " • Français";
    color: var(--sage-green);
    font-size: 0.9rem;
    font-style: italic;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--sage-green);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--mint-cream) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--soft-green) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(100px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.cta-button:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-soft);
}

.hero-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
    text-align: center;
}

.french-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--sage-green);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.quote-translation {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.credentials {
    background: var(--mint-cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--sage-green);
}

.credentials h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Contact */
.contact {
    background: var(--mint-cream);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-french {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Nature Elements */
.nature-bg {
    position: relative;
    overflow: hidden;
}

.nature-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="blur"><feGaussianBlur stdDeviation="2"/></filter></defs><circle cx="20" cy="30" r="3" fill="%23a8b5a0" opacity="0.3" filter="url(%23blur)"/><circle cx="80" cy="20" r="2" fill="%23c4d1bd" opacity="0.4" filter="url(%23blur)"/><circle cx="60" cy="70" r="4" fill="%23a8b5a0" opacity="0.2" filter="url(%23blur)"/><circle cx="30" cy="80" r="2.5" fill="%23c4d1bd" opacity="0.3" filter="url(%23blur)"/></svg>');
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .main-nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* WordPress specific styles */
.wp-post-content {
    margin-bottom: 2rem;
}

.wp-block-image {
    margin: 2rem 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* Hide author information */
.author-info,
.byline,
.posted-by,
.author-meta,
.entry-author {
    display: none !important;
}

/* Hide post meta that might reveal author */
.post-meta .author,
.entry-meta .author,
.post-author,
.entry-author-link {
    display: none !important;
}






/* Additional CSS for improved spacing and softer typography */

/* Softer, more readable typography */
body {
	    font-weight: 300;
	        letter-spacing: 0.3px;
		    font-size: 16px;
	    }

	    h1, h2, h3, h4, h5, h6 {
		        font-weight: 500;
			    letter-spacing: 0.5px;
			        margin-bottom: 1.5rem;
				    margin-top: 2rem;
			    }

			    h1 {
				        font-weight: 600;
				}

				h2 {
					    font-size: 2rem;
					        color: var(--text-dark);
						    margin-bottom: 2rem;
					    }

					    h3 {
						        font-size: 1.4rem;
							    color: var(--text-medium);
							        margin-bottom: 1rem;
							}

							/* Paragraph spacing and readability */
							p {
								    margin-bottom: 1.5rem;
								        line-height: 1.7;
									    color: var(--text-medium);
									        font-weight: 300;
									}

									/* Better list styling */
									ul, ol {
										    margin: 1.5rem 0;
										        padding-left: 0;
										}

										li {
											    margin-bottom: 0.8rem;
											        line-height: 1.6;
												    list-style: none;
												        padding-left: 1.8rem;
													    position: relative;
													        font-weight: 300;
														    color: var(--text-medium);
													    }

													    /* Custom bullet points */
													    li::before {
														        content: "•";
															    color: var(--sage-green);
															        font-size: 1.2rem;
																    position: absolute;
																        left: 0;
																	    top: 0;
																	        font-weight: bold;
																	}

																	/* Special styling for checkmark lists */
																	.credentials li::before {
																		    content: "✓";
																		        color: var(--sage-green);
																			    font-size: 1rem;
																			        left: 0.2rem;
																			}

																			/* Section spacing improvements */
																			.section {
																				    padding: 5rem 0;
																			    }

																			    .section:first-of-type {
																				        padding-top: 3rem;
																				}

																				/* Content area improvements */
																				.wp-post-content {
																					    max-width: 800px;
																					        margin: 0 auto;
																						    padding: 0 2rem;
																					    }

																					    /* Service sections with better spacing */
																					    .service-section {
																						        margin: 3rem 0;
																							    padding: 2rem 0;
																							        border-bottom: 1px solid rgba(168, 181, 160, 0.2);
																							}

																							.service-section:last-child {
																								    border-bottom: none;
																							    }

																							    /* Service titles with icons */
																							    h3[data-icon]::before {
																								        margin-right: 0.5rem;
																									    font-size: 1.2em;
																								    }

																								    /* Improved quote styling */
																								    blockquote,
																								    .testimonial {
																									        background: var(--mint-cream);
																										    padding: 1.5rem 2rem;
																										        border-left: 4px solid var(--sage-green);
																											    margin: 2rem 0;
																											        font-style: italic;
																												    border-radius: 0 8px 8px 0;
																											    }

																											    blockquote p,
																											    .testimonial p {
																												        margin-bottom: 0.5rem;
																													    color: var(--text-dark);
																													        font-weight: 400;
																													}

																													/* French text styling */
																													.french-text {
																														    font-family: 'Playfair Display', serif;
																														        font-style: italic;
																															    color: var(--sage-green);
																															        font-weight: 400;
																															}

																															/* Better spacing for credentials section */
																															.credentials {
																																    margin: 2rem 0;
																																        padding: 2.5rem;
																																}

																																.credentials h3 {
																																	    margin-top: 0;
																																	        margin-bottom: 1.5rem;
																																		    font-size: 1.3rem;
																																	    }

																																	    .credentials ul {
																																		        margin: 0;
																																		}

																																		.credentials li {
																																			    margin-bottom: 1rem;
																																			        font-size: 0.95rem;
																																				    line-height: 1.5;
																																			    }

																																			    /* Content sections with better visual hierarchy */
																																			    .content-section {
																																				        margin: 4rem 0;
																																				}

																																				.content-section h2 {
																																					    margin-bottom: 2.5rem;
																																					        padding-bottom: 0.5rem;
																																						    border-bottom: 2px solid var(--soft-green);
																																					    }

																																					    /* Improved readability for longer text blocks */
																																					    .about-text {
																																						        font-size: 1rem;
																																							    line-height: 1.8;
																																							        color: var(--text-medium);
																																							}

																																							.about-text p {
																																								    margin-bottom: 2rem;
																																								        font-weight: 300;
																																								}

																																								/* Service grid improvements */
																																								.services-list {
																																									    margin: 3rem 0;
																																								    }

																																								    .service-item {
																																									        margin: 2.5rem 0;
																																										    padding: 1.5rem 0;
																																									    }

																																									    .service-item h3 {
																																										        color: var(--text-dark);
																																											    font-size: 1.3rem;
																																											        margin-bottom: 1rem;
																																												    font-weight: 500;
																																											    }

																																											    .service-item p {
																																												        color: var(--text-light);
																																													    font-size: 0.95rem;
																																													        line-height: 1.6;
																																													}

																																													/* Better spacing for "Why Choose" section */
																																													.benefits-list {
																																														    margin: 2rem 0;
																																													    }

																																													    .benefit-item {
																																														        margin: 1.5rem 0;
																																															    padding: 1rem 0;
																																														    }

																																														    .benefit-title {
																																															        font-weight: 500;
																																																    color: var(--text-dark);
																																																        margin-bottom: 0.5rem;
																																																	    font-size: 1rem;
																																																    }

																																																    .benefit-description {
																																																	        color: var(--text-light);
																																																		    font-size: 0.9rem;
																																																		        line-height: 1.5;
																																																			    margin: 0;
																																																			        font-weight: 300;
																																																			}

																																																			/* Testimonial improvements */
																																																			.testimonials {
																																																				    margin: 3rem 0;
																																																			    }

																																																			    .testimonial-item {
																																																				        background: var(--white);
																																																					    padding: 2rem;
																																																					        margin: 1.5rem 0;
																																																						    border-radius: 10px;
																																																						        box-shadow: 0 3px 15px var(--shadow-soft);
																																																							    border-left: 4px solid var(--sage-green);
																																																						    }

																																																						    .testimonial-item p {
																																																							        font-style: italic;
																																																								    color: var(--text-dark);
																																																								        margin: 0;
																																																									    font-size: 0.95rem;
																																																									        line-height: 1.6;
																																																									}

																																																									/* Getting Started section */
																																																									.getting-started {
																																																										    background: var(--mint-cream);
																																																										        padding: 3rem 2rem;
																																																											    border-radius: 15px;
																																																											        margin: 3rem 0;
																																																											}

																																																											.getting-started h2 {
																																																												    margin-top: 0;
																																																												        text-align: center;
																																																													    color: var(--text-dark);
																																																												    }

																																																												    .getting-started ul {
																																																													        max-width: 600px;
																																																														    margin: 2rem auto;
																																																													    }

																																																													    .getting-started li {
																																																														        font-size: 0.95rem;
																																																															    color: var(--text-medium);
																																																															        margin-bottom: 1rem;
																																																															}

																																																															/* Final quote styling */
																																																															.closing-quote {
																																																																    text-align: center;
																																																																        margin: 4rem 0 2rem 0;
																																																																	    padding: 2rem;
																																																																	        background: linear-gradient(135deg, var(--mint-cream) 0%, var(--white) 100%);
																																																																		    border-radius: 15px;
																																																																	    }

																																																																	    .closing-quote .french-text {
																																																																		        font-size: 1.2rem;
																																																																			    margin-bottom: 0.5rem;
																																																																			        display: block;
																																																																			}

																																																																			.closing-quote .translation {
																																																																				    font-size: 0.9rem;
																																																																				        color: var(--text-light);
																																																																					    font-style: italic;
																																																																				    }

																																																																				    /* Mobile responsiveness improvements */
																																																																				    @media (max-width: 768px) {
																																																																					        .wp-post-content {
																																																																							        padding: 0 1rem;
																																																																								    }
																																																																								        
																																																																								        .section {
																																																																										        padding: 3rem 0;
																																																																											    }
																																																																											        
																																																																											        h2 {
																																																																													        font-size: 1.6rem;
																																																																														    }
																																																																														        
																																																																														        h3 {
																																																																																        font-size: 1.2rem;
																																																																																	    }
																																																																																	        
																																																																																	        .credentials {
																																																																																			        padding: 1.5rem;
																																																																																				    }
																																																																																				        
																																																																																				        .getting-started {
																																																																																						        padding: 2rem 1rem;
																																																																																							    }
																																																																																						    }







