/*
Theme Name: English Tutor Academy
Theme URI: https://englishpoland33.com
Author: English Tutor Academy
Author URI: https://englishpoland33.com
Description: Motyw WordPress dla English Tutor Academy – Łódź. Nowoczesny, profesjonalny motyw dla szkoły językowej.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: english-tutor-academy
Tags: education, language, one-page, orange, black
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== NAVIGATION ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000000;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.main-nav a {
  color: #ffffff;
  margin-left: 24px;
  font-size: 15px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #ff7a00;
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(90deg, #ff7a00, #ff9c3a);
  color: #ffffff;
  padding: 100px 40px;
}

.hero-content {
  max-width: 700px;
}

.hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-section ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.hero-section ul li {
  font-size: 18px;
  padding: 4px 0 4px 20px;
  position: relative;
  opacity: 0.95;
}

.hero-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #000000;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.cta-button:hover {
  background: #222222;
  transform: translateY(-1px);
}

/* ===== PRICING PLANS ===== */
.plans-section {
  display: flex;
  gap: 24px;
  padding: 80px 40px;
  justify-content: center;
  flex-wrap: wrap;
  background: #ffffff;
}

.plan-card {
  border: 2px solid #000000;
  padding: 36px 30px;
  width: 260px;
  text-align: center;
  background: #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.plan-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.plan-card .plan-price {
  font-size: 36px;
  font-weight: bold;
  margin: 12px 0;
}

.plan-card p {
  font-size: 15px;
  line-height: 1.5;
}

.plan-card.featured {
  background: #ff7a00;
  color: #ffffff;
  border: none;
}

.plan-card.dark {
  background: #000000;
  color: #ffffff;
  border: none;
}

/* ===== JOIN SECTION ===== */
.join-section {
  text-align: center;
  padding: 80px 20px;
  background: #f5f5f5;
}

.join-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.join-section p {
  font-size: 17px;
  margin-bottom: 12px;
}

.join-email {
  font-size: 26px;
  font-weight: bold;
  color: #ff7a00;
}

.join-email a {
  color: #ff7a00;
  transition: opacity 0.2s;
}

.join-email a:hover {
  opacity: 0.8;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #cccccc;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7a00;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 16px;
  background: #ff7a00;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #e06a00;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 24px 20px;
  font-size: 14px;
}

.site-footer a {
  color: #ff7a00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid #333;
    display: block;
  }

  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .plans-section {
    padding: 40px 20px;
  }

  .plan-card {
    width: 100%;
    max-width: 320px;
  }

  .join-section,
  .contact-section {
    padding: 50px 20px;
  }
}
