@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:wght@700;900&display=swap');

:root {
--plum: #6B2D5C;
--electric-coral: #FF6B9D;
--soft-peach: #FFB4A2;
--warm-ivory: #FFF8F0;
--dark-plum: #4A1E3D;
--text-dark: #2D1B2E;
--text-light: #F5E6F1;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
color: var(--text-dark);
line-height: 1.7;
background-color: var(--warm-ivory);
overflow-x: hidden;
}

.main-header {
background: linear-gradient(135deg, var(--plum) 0%, var(--dark-plum) 100%);
padding: 1.5rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(107, 45, 92, 0.3);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section img {
height: 60px;
width: auto;
transition: transform 0.3s ease;
}

.logo-section img:hover {
transform: scale(1.05);
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}

.primary-nav a {
color: var(--text-light);
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
letter-spacing: 0.5px;
transition: all 0.3s ease;
position: relative;
padding-bottom: 5px;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 3px;
background: var(--electric-coral);
transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
width: 44px;
height: 44px;
padding: 0;
border: 0;
background: transparent;
cursor: pointer;
z-index: 1002;
}

.menu-toggle span {
display: block;
width: 24px;
height: 3px;
background: var(--text-light);
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
}

body.menu-open {
overflow: hidden;
}

.hero-banner {
background: linear-gradient(rgba(107, 45, 92, 0.7), rgba(74, 30, 61, 0.8)), url("../images/1.jpg") center/cover;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
position: relative;
overflow: hidden;
}

.hero-content {
max-width: 900px;
padding: 3rem;
animation: fadeInUp 1s ease;
}

.hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: 5rem;
font-weight: 900;
margin-bottom: 1.5rem;
line-height: 1.1;
text-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

.hero-content p {
font-size: 1.5rem;
margin-bottom: 2.5rem;
font-weight: 300;
letter-spacing: 1px;
}

.cta-button {
display: inline-block;
background: var(--electric-coral);
color: white;
padding: 1.2rem 3rem;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
letter-spacing: 1px;
}

.cta-button:hover {
background: var(--plum);
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(107, 45, 92, 0.5);
}

.content-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 5rem 2rem;
}

.welcome-intro {
background: white;
}

.welcome-intro h2 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--plum);
margin-bottom: 2rem;
text-align: center;
}

.welcome-intro p {
font-size: 1.2rem;
line-height: 1.9;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.image-slider {
position: relative;
width: 100%;
max-height: 600px;
overflow: hidden;
background: var(--dark-plum);
}

.slider-wrapper {
position: relative;
width: 100%;
height: 600px;
}

.slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.slide.active-slide {
opacity: 1;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.slider-prev,
.slider-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 107, 157, 0.8);
color: white;
border: none;
font-size: 2rem;
padding: 1rem 1.5rem;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
border-radius: 5px;
}

.slider-prev:hover,
.slider-next:hover {
background: var(--electric-coral);
}

.slider-prev {
left: 2rem;
}

.slider-next {
right: 2rem;
}

.slider-indicators {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
z-index: 10;
}

.indicator {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator.active-indicator,
.indicator:hover {
background: var(--electric-coral);
transform: scale(1.3);
}

.classes-overview {
background: var(--soft-peach);
}

.classes-overview h2,
.terminology-section h2,
.testimonials-section h2,
.schedule-info h2 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--plum);
margin-bottom: 3rem;
text-align: center;
}

.class-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.class-card {
background: white;
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(107, 45, 92, 0.15);
transition: all 0.4s ease;
border: 3px solid transparent;
}

.class-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
border-color: var(--electric-coral);
}

.card-icon {
font-size: 3.5rem;
color: var(--electric-coral);
margin-bottom: 1.5rem;
}

.class-card h3 {
font-size: 1.8rem;
color: var(--plum);
margin-bottom: 1rem;
font-weight: 700;
}

.class-card p {
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.class-details {
display: flex;
gap: 1.5rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.class-details span {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--plum);
font-weight: 600;
font-size: 0.95rem;
}

.terminology-section {
background: white;
}

.terminology-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.term-item {
background: linear-gradient(135deg, var(--soft-peach) 0%, var(--warm-ivory) 100%);
padding: 2rem;
border-radius: 12px;
border-left: 5px solid var(--electric-coral);
transition: all 0.3s ease;
}

.term-item:hover {
transform: translateX(10px);
box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.term-item h3 {
font-size: 1.6rem;
color: var(--plum);
margin-bottom: 0.8rem;
font-weight: 700;
}

.term-item p {
font-size: 1.05rem;
line-height: 1.7;
}

.testimonials-section {
background: var(--plum);
color: var(--text-light);
}

.testimonials-section h2 {
color: var(--soft-peach);
}

.testimonials-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-card {
background: rgba(255, 255, 255, 0.1);
padding: 2.5rem;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 180, 162, 0.3);
transition: all 0.3s ease;
}

.testimonial-card:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.03);
}

.testimonial-card p {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.8;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.testimonial-author strong {
color: var(--soft-peach);
font-size: 1.1rem;
}

.testimonial-author span {
font-size: 0.95rem;
opacity: 0.8;
}

.schedule-info {
background: var(--soft-peach);
}

.hours-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}

.hours-item {
background: white;
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 8px 20px rgba(107, 45, 92, 0.1);
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.hours-item strong {
font-size: 1.3rem;
color: var(--plum);
font-weight: 700;
}

.hours-item span {
font-size: 1.1rem;
color: var(--electric-coral);
font-weight: 600;
}

.site-footer {
background: linear-gradient(135deg, var(--dark-plum) 0%, var(--plum) 100%);
color: var(--text-light);
padding: 4rem 2rem 2rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-column h4 {
font-size: 1.4rem;
margin-bottom: 1.2rem;
color: var(--soft-peach);
font-weight: 700;
}

.footer-column p,
.footer-column a {
color: var(--text-light);
text-decoration: none;
line-height: 1.9;
transition: color 0.3s ease;
}

.footer-column a:hover {
color: var(--electric-coral);
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.7rem;
}

.footer-column i {
margin-right: 0.5rem;
color: var(--electric-coral);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 180, 162, 0.3);
font-size: 0.95rem;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--plum) 0%, var(--dark-plum) 100%);
color: var(--text-light);
padding: 2rem;
box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.cookie-consent.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.cookie-text h3 {
font-size: 1.4rem;
margin-bottom: 0.8rem;
color: var(--soft-peach);
}

.cookie-text p {
font-size: 1rem;
line-height: 1.6;
}

.cookie-text a {
color: var(--electric-coral);
text-decoration: underline;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

.accept-btn {
background: var(--electric-coral);
color: white;
}

.accept-btn:hover {
background: var(--soft-peach);
color: var(--plum);
}

.customize-btn {
background: transparent;
color: var(--text-light);
border: 2px solid var(--soft-peach);
}

.customize-btn:hover {
background: var(--soft-peach);
color: var(--plum);
}

.decline-btn {
background: transparent;
color: var(--text-light);
border: 2px solid rgba(255, 255, 255, 0.3);
}

.decline-btn:hover {
background: rgba(255, 255, 255, 0.1);
}

.page-hero {
background: linear-gradient(rgba(107, 45, 92, 0.8), rgba(74, 30, 61, 0.9)), url("../images/7.jpg") center/cover;
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
}

.page-hero h1 {
font-family: 'Playfair Display', serif;
font-size: 4rem;
font-weight: 900;
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.3rem;
font-weight: 300;
}

.about-story {
background: white;
}

.story-content {
margin-bottom: 3rem;
}

.story-content h2 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--plum);
margin-bottom: 2rem;
}

.story-content p {
font-size: 1.15rem;
line-height: 1.9;
margin-bottom: 1.5rem;
}

.story-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(107, 45, 92, 0.2);
}

.team-section {
background: var(--soft-peach);
}

.team-section h2 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--plum);
margin-bottom: 1.5rem;
text-align: center;
}

.team-intro {
text-align: center;
font-size: 1.2rem;
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.team-member {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(107, 45, 92, 0.15);
transition: all 0.4s ease;
}

.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member h3 {
font-size: 1.6rem;
color: var(--plum);
margin: 1.5rem 1.5rem 0.5rem;
font-weight: 700;
}

.member-role {
color: var(--electric-coral);
font-weight: 600;
font-size: 1.05rem;
margin: 0 1.5rem 1rem;
}

.member-bio {
padding: 0 1.5rem 1.5rem;
font-size: 1rem;
line-height: 1.7;
}

.values-section {
background: white;
}

.values-section h2 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--plum);
margin-bottom: 3rem;
text-align: center;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.value-card {
text-align: center;
padding: 2.5rem;
background: linear-gradient(135deg, var(--warm-ivory) 0%, var(--soft-peach) 100%);
border-radius: 15px;
transition: all 0.3s ease;
}

.value-card:hover {
transform: scale(1.05);
box-shadow: 0 12px 35px rgba(255, 107, 157, 0.2);
}

.value-icon {
font-size: 3.5rem;
color: var(--electric-coral);
margin-bottom: 1.5rem;
}

.value-card h3 {
font-size: 1.8rem;
color: var(--plum);
margin-bottom: 1rem;
font-weight: 700;
}

.value-card p {
font-size: 1.05rem;
line-height: 1.7;
}

.facility-section {
background: var(--soft-peach);
}

.facility-section h2 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--plum);
margin-bottom: 2rem;
}

.facility-section p {
font-size: 1.15rem;
line-height: 1.9;
margin-bottom: 1.5rem;
}

.blog-listing {
background: white;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.blog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(107, 45, 92, 0.15);
transition: all 0.4s ease;
border: 3px solid transparent;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
border-color: var(--electric-coral);
}

.blog-image img {
width: 100%;
height: 300px;
object-fit: cover;
}

.blog-content {
padding: 2rem;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1.2rem;
flex-wrap: wrap;
}

.blog-meta span {
display: flex;
align-items: center;
gap: 0.4rem;
color: var(--plum);
font-size: 0.95rem;
font-weight: 600;
}

.blog-meta i {
color: var(--electric-coral);
}

.blog-content h2 {
font-size: 1.7rem;
margin-bottom: 1rem;
}

.blog-content h2 a {
color: var(--plum);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-content h2 a:hover {
color: var(--electric-coral);
}

.blog-content p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.read-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--electric-coral);
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
}

.read-more:hover {
gap: 1rem;
color: var(--plum);
}

.contact-section {
background: white;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--plum);
margin-bottom: 2rem;
}

.info-block {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
align-items: flex-start;
}

.info-icon {
font-size: 2rem;
color: var(--electric-coral);
min-width: 50px;
}

.info-content h3 {
font-size: 1.3rem;
color: var(--plum);
margin-bottom: 0.5rem;
font-weight: 700;
}

.info-content p,
.info-content a {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-dark);
text-decoration: none;
}

.info-content a:hover {
color: var(--electric-coral);
}

.contact-form-wrapper h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--plum);
margin-bottom: 2rem;
}

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

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

.form-group label {
font-weight: 600;
color: var(--plum);
font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 1rem;
border: 2px solid var(--soft-peach);
border-radius: 8px;
font-size: 1rem;
font-family: 'Montserrat', sans-serif;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--electric-coral);
box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.submit-btn {
background: var(--electric-coral);
color: white;
padding: 1.2rem 2.5rem;
border: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
align-self: flex-start;
}

.submit-btn:hover {
background: var(--plum);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(107, 45, 92, 0.3);
}

.map-section {
background: var(--soft-peach);
}

.map-section h2 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--plum);
margin-bottom: 2rem;
text-align: center;
}

.map-container {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(107, 45, 92, 0.2);
}

body.popup-open {
overflow: hidden !important;
}

.form-popup {
position: fixed;
inset: 0;
z-index: 10050;
display: flex;
align-items: center;
justify-content: center;
padding: 1.25rem;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-popup.is-open {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

.form-popup-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(74, 30, 61, 0.88), rgba(107, 45, 92, 0.78));
backdrop-filter: blur(8px);
}

.form-popup-card {
position: relative;
width: min(440px, 100%);
background: var(--warm-ivory);
color: var(--text-dark);
padding: 2.6rem 2rem 2.2rem;
border-radius: 24px;
text-align: center;
box-shadow: 0 24px 60px rgba(45, 27, 46, 0.35);
animation: popupIn 0.4s ease;
overflow: hidden;
}

.form-popup-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 7px;
background: linear-gradient(90deg, var(--plum), var(--electric-coral), var(--soft-peach));
}

.form-popup-close {
position: absolute;
top: 0.85rem;
right: 0.85rem;
width: 40px;
height: 40px;
border: 0;
border-radius: 50%;
background: rgba(107, 45, 92, 0.08);
color: var(--plum);
font-size: 1.05rem;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background 0.25s ease, color 0.25s ease;
}

.form-popup-close:hover,
.form-popup-close:focus-visible {
background: var(--plum);
color: white;
outline: none;
}

.form-popup-mark {
width: 78px;
height: 78px;
margin: 0.4rem auto 1.2rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--plum), var(--electric-coral));
color: white;
font-size: 1.8rem;
box-shadow: 0 10px 24px rgba(255, 107, 157, 0.35);
}

.form-popup-kicker {
margin: 0 0 0.45rem;
font-size: 0.78rem;
letter-spacing: 2.4px;
text-transform: uppercase;
font-weight: 700;
color: var(--electric-coral);
}

.form-popup-card h2,
.form-popup #formPopupTitle {
font-family: 'Playfair Display', serif;
font-size: clamp(1.7rem, 4vw, 2.2rem);
color: var(--plum);
margin: 0 0 0.8rem;
line-height: 1.2;
overflow-wrap: normal !important;
word-break: normal !important;
hyphens: none !important;
}

.form-popup-card,
.form-popup-card h2,
.form-popup-card p,
.form-popup-btn {
max-width: none !important;
overflow-wrap: normal !important;
word-break: normal !important;
hyphens: none !important;
}

.form-popup-card p#formPopupText {
font-size: 1.02rem;
line-height: 1.7;
margin: 0 0 1.6rem;
color: var(--text-dark);
}

.form-popup-btn {
background: var(--electric-coral);
color: white;
padding: 0.95rem 2.2rem;
border: none;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.form-popup-btn:hover,
.form-popup-btn:focus-visible {
background: var(--plum);
transform: translateY(-2px);
outline: none;
}

@keyframes popupIn {
from {
opacity: 0;
transform: translateY(18px) scale(0.96);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}

@media (max-width: 480px) {
.form-popup-card {
padding: 2.2rem 1.3rem 1.8rem;
}
}

.blog-post {
background: white;
}

.post-hero img {
width: 100%;
height: 500px;
object-fit: cover;
}

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 4rem 2rem;
}

.post-header {
margin-bottom: 3rem;
}

.post-meta {
display: flex;
gap: 2rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.post-date,
.post-category,
.post-author {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--plum);
font-size: 1rem;
font-weight: 600;
}

.post-meta i {
color: var(--electric-coral);
}

.post-header h1 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: var(--plum);
line-height: 1.2;
}

.post-content h2 {
font-family: 'Playfair Display', serif;
font-size: 2.3rem;
color: var(--plum);
margin: 3rem 0 1.5rem;
}

.post-content p {
font-size: 1.15rem;
line-height: 1.9;
margin-bottom: 1.8rem;
color: var(--text-dark);
}

.post-footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--soft-peach);
}

.back-to-blog {
display: inline-flex;
align-items: center;
gap: 0.8rem;
color: var(--electric-coral);
font-weight: 700;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.back-to-blog:hover {
color: var(--plum);
gap: 1.2rem;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

@media (max-width: 1024px) {
.hero-content h1 {
font-size: 3.5rem;
}

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

@media (max-width: 768px) {
.header-container {
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
}

.menu-toggle {
display: flex;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}

.primary-nav {
display: none;
flex-basis: 100%;
width: 100%;
padding: 0.5rem 0 1rem;
}

.primary-nav.is-open {
display: block;
}

.primary-nav ul {
flex-direction: column;
align-items: center;
gap: 1rem;
text-align: center;
}

.primary-nav a {
display: inline-block;
padding: 0.4rem 0.6rem;
overflow-wrap: normal;
word-break: normal;
hyphens: none;
}

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

.hero-content p {
font-size: 1.2rem;
}

.page-hero h1 {
font-size: 2.5rem;
}

.slider-prev,
.slider-next {
padding: 0.8rem 1rem;
font-size: 1.5rem;
}

.slider-prev {
left: 1rem;
}

.slider-next {
right: 1rem;
}

.post-header h1 {
font-size: 2.5rem;
}

.class-grid,
.terminology-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
