/* ====================================
   LADY LIBERTY FOUNDATION - STYLES
   ==================================== */

:root {
  --blue: #41448D;
  --dark-blue: #151993;
  --orange: #E64406;
  --red: #FF4040;
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --mid-gray: #e8e8e8;
  --dark-gray: #333333;
  --text-color: #222222;
  --site-width: 980px;
  --font-heading: 'Oswald', Arial, sans-serif;
  --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-color); background: #fff; font-size: 15px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================
   HEADER
   ==================================== */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 18px 20px 0;
}

.header-logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.header-logo-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.header-title-block {
  text-align: center;
}

.header-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  display: block;
  letter-spacing: 0.5px;
}

.header-title:hover { text-decoration: none; color: var(--dark-blue); }

.header-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

.header-line {
  border: none;
  border-top: 1px solid var(--mid-gray);
  margin: 14px 0 0;
}

/* NAV */
.main-nav {
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.main-nav ul li a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 10px 12px;
  display: block;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--blue);
  border-bottom-color: var(--orange);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ====================================
   HERO MOTTO
   ==================================== */
.hero-motto {
  background: var(--white);
  padding: 50px 20px;
  text-align: center;
  border-bottom: 3px solid var(--mid-gray);
}

.hero-motto-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--red);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-section {
  padding: 60px 20px;
  background: var(--white);
}

.about-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-image-col {
  flex: 0 0 340px;
}

.about-statue {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-text-col {
  flex: 1;
  padding-top: 10px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* ====================================
   GOALS SECTION
   ==================================== */
.goals-section {
  background: var(--light-gray);
  padding: 60px 20px;
}

.goals-header {
  text-align: center;
  margin-bottom: 48px;
}

.goals-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
}

.goals-title-blue { color: var(--dark-blue); }
.goals-title-orange { color: var(--orange); }

.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: var(--site-width);
  margin: 0 auto;
}

.goal-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.goal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.goal-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.goal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.goal-item:hover .goal-img { transform: scale(1.04); }

.goal-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  padding: 20px 20px 8px;
  line-height: 1.3;
}

.goal-text {
  padding: 0 20px 24px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* ====================================
   MOTTOS SECTION
   ==================================== */
.mottos-section {
  background: var(--white);
  padding: 60px 20px;
}

.mottos-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.mottos-image-col {
  flex: 0 0 420px;
}

.mottos-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mottos-text-col {
  flex: 1;
}

.mottos-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: #555;
  font-style: normal;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.motto-item {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
  line-height: 1.5;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
  background: var(--light-gray);
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.35;
  margin-bottom: 24px;
}

.contact-notice {
  background: #fff3e0;
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.contact-notice p {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 6px;
  line-height: 1.6;
}

.contact-org-info {
  margin-bottom: 20px;
}

.contact-org-info p {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.contact-org-info a { color: var(--blue); }
.contact-org-info a:hover { text-decoration: underline; }

.contact-rodo-note {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.contact-rodo-note a { color: var(--blue); }

/* FORM */
.contact-form-col form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-color);
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px 36px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

/* ====================================
   RODO SECTION
   ==================================== */
.rodo-section {
  background: #fff;
  padding: 48px 20px;
  border-top: 1px solid var(--mid-gray);
}

.rodo-title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.4;
}

.rodo-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  max-width: 860px;
  margin-bottom: 20px;
}

.btn-more {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.btn-more:hover {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
  background: var(--dark-gray);
  color: #ccc;
  padding: 24px 20px;
}

.footer-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
}

.footer-text a {
  color: #ccc;
  transition: color 0.2s;
}

.footer-text a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ====================================
   PAGE HERO (inner pages)
   ==================================== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-hero-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
  font-style: italic;
}

/* ====================================
   PAGE CONTENT
   ==================================== */
.page-content {
  padding: 60px 20px;
  max-width: var(--site-width);
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  margin-top: 36px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 12px;
  margin-top: 28px;
}

.page-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}

.page-content ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.page-content ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.page-section {
  padding: 60px 20px;
  background: var(--light-gray);
}

.page-section-white {
  padding: 60px 20px;
  background: #fff;
}

/* ====================================
   TEAM PAGE
   ==================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s;
}

.team-card:hover { transform: translateY(-4px); }

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

.team-card-body {
  padding: 20px;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.team-card-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ====================================
   RESULTS / VICTORIES
   ==================================== */
.results-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.result-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  border-left: 5px solid var(--blue);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.result-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.result-card .result-amount {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.result-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ====================================
   NEWS / AKTUALNOSCI
   ==================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.news-card:hover { transform: translateY(-3px); }

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-body {
  padding: 20px;
}

.news-date {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 10px;
}

.news-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
  .header-title { font-size: 16px; }
  .header-logo-img { width: 50px; height: 50px; }
  .nav-toggle { display: block; position: absolute; right: 20px; top: 18px; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li a { padding: 12px 20px; border-bottom: 1px solid var(--mid-gray); border-left: none; font-size: 14px; }
  .header-inner { position: relative; padding-bottom: 10px; }
  .header-logo-area { padding-right: 60px; }

  .about-inner { flex-direction: column; }
  .about-image-col { flex: none; width: 100%; }
  .about-statue { height: 300px; }

  .mottos-inner { flex-direction: column; }
  .mottos-image-col { flex: none; width: 100%; }
  .mottos-img { height: 280px; }

  .goals-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .results-list { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .header-title { font-size: 14px; }
}
