
/* Oswald */
@font-face {
  font-family: 'Oswald';
  src: url("fonts/Oswald-SemiBold.woff2")format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("fonts/Oswald-Bold.woff2")format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Roboto Regular */
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto_Condensed-Regular.woff2")format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Roboto Medium */
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto_Condensed-Medium.woff2")format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Roboto SemiBold */
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto_Condensed-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Roboto Bold */
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto_Condensed-Bold.woff2")format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Roboto, sans-serif; color: #000000; background: #E6E4E5; }

:root { --heading: 'Oswald', Roboto, sans-serif; }

.container { width: 100%; max-width: 1200px; padding: 0 16px; margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #02a2a4; backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid #ffffff; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: var(--heading); font-weight: 700; font-size: 30px; text-decoration: none; color: #000000; }
.nav { display: flex; align-items: center; }
.nav a { margin-left: 16px; text-decoration: none; color: #ffffff; font-weight: 600; }
.nav a.active, .nav a:hover { color: #D96C66; }



/* Hamburger Button */
.hamburger { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 24px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 101; }
.hamburger span { width: 100%; height: 3px; background: #ffffff; border-radius: 3px; transition: all 0.3s ease; transform-origin: center; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* Mobile Menu Overlay */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 98; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; max-width: 85vw; height: 100vh; background: #02a2a4; z-index: 99; padding: 80px 32px 32px; display: flex; flex-direction: column; gap: 24px; transition: right 0.3s ease; overflow-y: auto; box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2); }
.mobile-menu.active { right: 0; }
.mobile-menu a { color: #ffffff; text-decoration: none; font-weight: 600; font-size: 18px; padding: 12px 0; border-bottom: 1px solid rgba(229, 228, 226, 0.2); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: #D96C66; }

/* Mobile Language Dropdown */
.mobile-lang-dropdown { margin-top: 8px; }
.mobile-lang-toggle { background: transparent; border: none; color: #ffffff; font-weight: 600; font-size: 18px; cursor: pointer; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; width: 100%; font-family: Roboto, sans-serif; border-bottom: 1px solid rgba(229, 228, 226, 0.2); }
.mobile-lang-toggle:hover { color: #D96C66; }
.mobile-lang-menu { list-style: none; padding: 8px 0 0 0; margin: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-lang-menu.open { max-height: 200px; }
.mobile-lang-menu li { margin: 0; }
.mobile-lang-menu a { display: block; padding: 8px 0 8px 16px; color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.2s; border-bottom: none; }
.mobile-lang-menu a:hover { color: #D96C66; }


/* Language Dropdown */
.lang-dropdown { position: relative; margin-left: 16px; }
.lang-toggle { background: transparent; border: none; color: #ffffff; font-weight: 600; font-size: 16px; cursor: pointer; padding: 4px 8px; display: flex; align-items: center; gap: 4px; font-family: Roboto, sans-serif; }
.lang-toggle:hover { color: #D96C66; }
.dropdown-arrow { font-size: 10px; transition: transform 0.2s; }
.lang-menu { position: absolute; top: 100%; right: 0; margin-top: 8px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); list-style: none; padding: 4px 0; min-width: 120px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { margin: 0; }
.lang-menu a { display: block; padding: 8px 16px; color: #4a4a48; text-decoration: none; font-weight: 500; transition: background 0.2s; margin-left: 0; }
.lang-menu a:hover { background: #ffffff; color: #02a2a4; }

/* Hero */
.hero { position: relative; 
	height: 520px; 
	display: flex; 
	align-items: center; 
	justify-content: flex-end; 
	overflow: hidden; 
	background: 
    radial-gradient(circle at 20% 30%, rgba(214, 197, 55, 0.08) 0%, transparent 12%),
    radial-gradient(circle at 80% 70%, rgba(229, 228, 226, 0.06) 0%, transparent 15%),
    #DDE3E3;
	padding: 0px 0 0px; }
.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.hero-content {
  color: #ffffff;
  max-width: 520px;
  text-align: left;
}
.hero-content .eyebrow {
  letter-spacing: 0.4em;
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.7);
}
.hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
  margin: 0 0 16px;
	color: #4a4a48;
}
.hero-content p {
  font-size: clamp(16px, 3vw, 20px);
  margin: 0;
	color: #4a4a48;
}
.hero .btn {
  margin-top: 28px;
  align-self: flex-start;
  background: #D96C66;
  color: #ffffff;
}
.hero .btn:hover { background: #02a2a4; color: #ffffff; transform: translateY(-2px); }

.hero-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  align-self: stretch;
}
/* Tablet (≥768px) */
@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-img {
    align-self: stretch;
  }
}

/* Desktop (≥1200px) */
@media (min-width: 1200px) {
  .hero {
    padding: 0px 0 0px;}

  .hero-layout {
    gap: 64px;}
  .hero-img {
    max-width: 520px;} }

.hero-img {  inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; margin-right: 20px; margin-left: 0; margin-top: 150px; max-width: 700px; text-align: left; align-items: flex-start; display: flex; flex-direction: column; }
.hero h1 { font-family: var(--heading); font-size: 44px; margin: 0 0 12px 0; letter-spacing: 1px; }
.hero p { font-size: 18px; margin: 0 0; }

/* Buttons */
.btn { display: inline-block; background: #02a2a4;; color: #ffffff; padding: 12px 22px; border-radius: 28px; font-weight: 700; text-decoration: none; transition: transform .15s ease, background .2s; margin-top: 20px; }
.btn:hover { background: #D96C66; color: #ffffff; transform: translateY(-2px); }

/* Triptych */
.triptych { padding: 100px 0; background-color: #DDE3E3;}
.section-title { font-family: var(--heading); font-size: 32px; text-align: center; margin: 70px 0 100px 0; color: #4a4a48; }
.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { border: 1px solid #ffffff; border-radius: 12px; padding: 0; background: #ffffff; overflow: hidden; display: flex; flex-direction: column; }
.card-img { width: 100%; height: 300px; object-fit: cover; display: block; }
.card h3 { font-family: var(--heading); font-size: 22px; margin: 16px 16px 8px 16px; color: #4a4a48; }
.card p { margin: 0 16px 12px 16px; color: #4a4a48; }
.card .link { font-weight: 700; color: #02a2a4; text-decoration: none; margin: 0 16px 16px 16px; display: inline-block; }
.card .link:hover { text-decoration: underline; }


/* About creativity */
.about-creativity { padding: 100px 0; background: #ffffff; }
.about-creativity-content { display:contents; grid-template-columns: 0fr; gap: 32px; align-items: center; }
.about-creativity-image { width: 100%; }
.about-creativity-image img { width: 100%; max-width: auto; height: auto; border-radius: 12px; object-fit: cover; display: block; margin: 10 auto; }
.about-creativity-text { max-width: auto; text-align: left; }
.about-creativity-text h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 16px 0; color: #4a4a48; texty-align: center;}
.about-creativity-text p { font-size: 16px; line-height: 1.6; color: #4a4a48; margin: 0 0 16px 0; }
.about-creativity-text .btn { margin-top: 28px; align-self: flex-start; background: #D96C66; color: #ffffff; }
.about-creativity-text .btn:hover { background: #BFBFBF; color: #ffffff; transform: translateY(-2px); }

/* About Language */
.about-language { padding: 100px 0; background: #02a2a4; }
.about-language-content { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-language-image { width: 100%; }
.about-language-image img { width: 100%; max-width: 400px; height: auto; border-radius: 12px; object-fit: cover; display: block; margin: 0 auto; }
.about-language-text { max-width: 520px; text-align: left; }
.about-language-text h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 16px 0; color: #ffffff; }
.about-language-text p { font-size: 16px; line-height: 1.6; color: #ffffff; margin: 0 0 16px 0; }
.about-language-text .btn { margin-top: 28px; align-self: flex-start; background: #D96C66; color: #ffffff; }
.about-language-text .btn:hover { background: #BFBFBF; color: #ffffff; transform: translateY(-2px); }

/* About Me Preview */
.about-me-preview { padding: 100px 0; background: #ffffff; }
.about-me-content { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-me-image { width: 100%; }
.about-me-image img { width: 100%; max-width: 400px; height: auto; border-radius: 12px; object-fit: cover; display: block; margin-right: 150px; margin: 0 auto; }
.about-me-text h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 16px 0; color: #4a4a48; }
.about-me-text p { font-size: 16px; line-height: 1.6; color: #4a4a48; margin: 0 0 16px 0; }
.about-me-text .btn { margin-top: 16px; }

/* Coaching Options */
.coaching-options { padding: 100px 0; background: #F5F5F5; }
.coaching-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.coaching-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 32px; display: flex; flex-direction: column; }
.coaching-card h3 { font-family: var(--heading); font-size: 24px; margin: 0 0 16px 0; color: #333333; }
.coaching-description { font-size: 16px; line-height: 1.6; color: #4b5563; margin: 0 0 24px 0; }
.coaching-details { margin-bottom: 24px; }
.price-info { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.price { font-size: 20px; font-weight: 700; color: #688E23; margin: 0 0 8px 0; }
.intro-price { font-size: 14px; color: #6b7280; margin: 0; }
.session-info { font-size: 14px; color: #4b5563; }
.session-info p { margin: 0 0 8px 0; }
.session-info p:last-child { margin: 0; }
.coaching-btn { width: 100%; text-align: center; margin-top: 0; }

/* Services */
.services { padding: 100px 0; background: #f9fafb; }
.services h2 { font-family: var(--heading); font-size: 28px; margin: 0 0 16px 0; }
.service-list { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0; margin: 0; list-style: none; }
.service-list li { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; background: #ffffff; }
.service-list h4 { font-size: 18px; margin: 0 0 6px 0; }
.service-list p { margin: 0; color: #4b5563; }

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonials-title { font-family: var(--heading); font-size: 28px; margin: 0 0 32px 0; text-align: center; color: #4a4a48; }
.quotes { display: grid; grid-template-columns: 1fr; gap: 16px; }
blockquote { border-radius: 12px; margin: 0; padding: 16px; border-left: 4px solid #D96C66; background: #ffffff; }
blockquote p { margin: 0 0 12px 0; }
blockquote cite { color: #6b7280; font-style: normal; display: flex; align-items: center; gap: 12px; }
.client-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; display: block; }
blockquote cite span { flex: 1; }

/* Page generic */
.page { padding: 40px 0 60px 0; }
.page-hero { padding: 24px 0; }
.page-hero-content { max-width:  }
.page-hero h1 { font-family: var(--heading); font-size: 36px; margin: 0 0 10px 0; }
.page-hero p { margin: 0; color: #4a4a48; }
.about-block { padding: 20px 0; border-top: 1px solid #e5e7eb; }
.about-block h2 { font-family: var(--heading); font-size: 24px; margin: 0 0 8px 0; }
.about-block p { margin: 0; color: #4b5563; }

/* About Page Sections */
.about-section { padding: 60px 0; }
.about-section:first-child { padding-top: 40px; }
.about-section .container { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-content-left, .about-content-right { display: flex; flex-direction: column; }
.about-content-left h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 24px 0; color: #333333; }
.about-content-left p, .about-content-right p { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0; }
.about-content-right li { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0; }
.about-content-left p:last-child, .about-content-right p:last-child { margin-bottom: 0; }
.about-image-left, .about-image-right { width: 100%; }
.about-image-left img, .about-image-right img { width: 100%; max-width: 500px; height: auto; border-radius: 12px; object-fit: cover; display: block; margin: 0 auto; }

/* Coaching Page Sections */
.coaching-section { padding: 60px 0; }
.coaching p { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0;}
.coaching li { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0;}
.coaching h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 24px 0; color: #333333; }
.link1 { font-size: 16px; color: #02a2a4; text-decoration:none; margin: 0 16px 16px 16px; display: inline-block; }
.link1 hover { text-decoration: underline; }
.coaching-section:first-child { padding-top: 40px; }
.coaching-section .container { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.coaching-content-left, .coaching-content-right { display: flex; flex-direction: column; }
.coaching-content-left h2, .coaching-content-right h2 { font-family: var(--heading); font-size: 32px; margin: 0 0 24px 0; color: #333333; }
.coaching-content-left p, .coaching-content-right p { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0; }
.coaching-content-left li { font-size: 16px; line-height: 1.8; color: #4b5563; margin: 0 0 20px 0; }
.coaching-content-left p:last-child, .coaching-content-right p:last-child { margin-bottom: 0; }
.coaching-content-left p b, .coaching-content-right p b { font-weight: 700; color: #333333; }
.coaching-image-left, .coaching-image-right { width: 100%; }
.coaching-image-left img, .coaching-image-right img { width: 100%; max-width: 500px; height: auto; border-radius: 12px; object-fit: cover; display: block; margin: 0 auto; }

/* Contact */
.contact { padding: 24px 0 40px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-form { display: grid; gap: 10px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 16px; }
.contact-form button.btn { width: 100%; }
.contact-details h3 { font-family: var(--heading); font-size: 20px; margin: 0 0 8px 0; }

/* Footer */
.site-footer { border-top: 1px solid #e5e7eb; padding: 32px 0; background: #ffffff; }
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.site-footer p { margin: 0; color: #6b7280; font-size: 14px; }
.social-links { display: flex; gap: 16px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background:#02a2a4; color:#ffffff; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.social-links a:hover { background: #D96C66; transform: translateY(-2px); }
.social-links i { font-size: 18px; }
.link { font-weight: 700; color: #02a2a4; text-decoration: none; margin: 0 16px 16px 16px; display: inline-block; }
.link:hover { text-decoration: underline; }

/* Responsive */
@media (min-width: 640px) {
  .hero { height: 630px; }
  .hero-content { margin-left: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 2fr 1fr; }
  .about-me-content { grid-template-columns: 1fr 1.5fr; gap: 48px; }
  .about-me-image img { margin: 0; }
	.about-language-content { grid-template-columns: 1fr 1.5fr; gap: 48px; }
  .about-language-image img {  }
  .coaching-cards { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .container { flex-direction: row; justify-content: space-between; align-items: center; }
  .about-section .container { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-image-left img, .about-image-right img { margin: 0; }
  .about-section:nth-child(2) .container { grid-template-columns: 1fr 1fr; }
  .about-section:nth-child(2) .about-image-left { order: 1; }
  .about-section:nth-child(2) .about-content-right { order: 2; }
  .coaching-section .container { grid-template-columns: 1fr 1fr; gap: 48px; }
  .coaching-image-left img, .coaching-image-right img { margin: 0; }
  .coaching-section:nth-child(2) .container { grid-template-columns: 1fr 1fr; }
  .coaching-section:nth-child(2) .coaching-content-left { order: 1; }
  .coaching-section:nth-child(2) .coaching-image-right { order: 2; }
}
@media (min-width: 1024px) {
  .hero { height: 740px; }
  .hero-content { margin-left: 48px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr 1fr 1fr; }
  .quotes { grid-template-columns: 1fr 1fr 1fr; }
  .about-me-content { gap: 64px; }
  .about-me-text h2 { font-size: 36px; }
  .about-me-text p { font-size: 18px; }
	 .about-language-content { gap: 64px; }
  .about-language-text h2 { font-size: 36px; }
  .about-language-text p { font-size: 18px; }
  .coaching-card { padding: 40px; }
  .coaching-card h3 { font-size: 28px; }
  .coaching-description { font-size: 18px; }
  .about-section { padding: 80px 0; }
  .about-section .container { gap: 64px; }
  .about-content-left h2 { font-size: 36px; }
  .about-content-left p, .about-content-right p { font-size: 18px; }
  .coaching-section { padding: 80px 0; }
  .coaching-section .container { gap: 64px; }
  .coaching-content-left h2, .coaching-content-right h2 { font-size: 36px; }
  .coaching-content-left p, .coaching-content-right p { font-size: 18px; }
}
@media (min-width: 1920px) {
  .hero { height: 900px; }}

@media (min-width: 1440px) {
  .hero {
    min-height: 80vh;   /* fills more of tall desktops */
    padding: 140px 0;   /* add breathing room top/bottom */
  }
  .hero-layout {
    gap: 72px;
  }
  .hero-img {
    max-width: 560px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 639px) {
  .hero {
    height: auto;
    padding: 20px 0 48px;
  }
  .hero-layout {
    flex-direction: column;
    gap: 32px;
  }
  .hero-img {
    order: 1;
    max-width: 100%;
    align-self: center;
  }
  .hero-content {
    order: 2;
    margin-left: 0px;
    max-width: 92vw;
    margin-top: 0px;
  }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .btn { padding: 10px 18px; font-size: 14px; }
  .nav { display: none; }
  .hamburger { display: flex; }
	.triptych {padding-top: 20px;}

  .section-title { font-size: 24px; margin-bottom: 24px; }
  .card-img { height: 180px; }
  .about-me-preview { padding: 40px 0; }
  .about-me-text h2 { font-size: 24px; }
  .about-me-text p { font-size: 14px; }
	.about-language { padding: 40px 0; }
  .about-language-text h2 { font-size: 24px; }
  .about-language-text p { font-size: 14px; }
  .coaching-options { padding: 40px 0; }
  .coaching-card { padding: 24px; }
  .coaching-card h3 { font-size: 20px; }
  .coaching-description { font-size: 14px; }
  .price { font-size: 18px; }
  .site-footer .container { gap: 12px; }
  .site-footer p { font-size: 12px; text-align: center; }
  .social-links { gap: 12px; }
  .social-links a { width: 36px; height: 36px; }
  .social-links i { font-size: 16px; }
  .about-section { padding: 40px 0; }
  .about-content-left h2 { font-size: 24px; margin-bottom: 16px; }
  .about-content-left p, .about-content-right p { font-size: 14px; margin-bottom: 16px; }
  .coaching-section { padding: 40px 0; }
  .coaching-content-left h2, .coaching-content-right h2 { font-size: 24px; margin-bottom: 16px; }
  .coaching-content-left p, .coaching-content-right p { font-size: 14px; margin-bottom: 16px; }
}
