@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --teal-900: #042f2e;
  --teal-800: #115e59;
  --teal-600: #0d9488;
  --sand-500: #f59e0b;
  --sand-100: #fef3c7;
  --gray-900: #111827;
  --gray-600: #4b5563;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  
  --shadow-float: 0 20px 40px -10px rgba(0,0,0,0.1);
  --shadow-card: 0 10px 30px -5px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background-color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* LAYOUT UTILS */
.wrapper { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 8rem 0; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; color: var(--teal-900); line-height: 1.1; }
.subtitle { font-size: 1.125rem; color: var(--teal-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.text-body { font-size: 1.125rem; color: var(--gray-600); line-height: 1.8; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 100px; font-weight: 500; font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-solid { background: var(--teal-800); color: var(--white); }
.btn-solid:hover { background: var(--teal-900); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(17,94,89,0.2); }
.btn-accent { background: var(--sand-500); color: var(--teal-900); }
.btn-accent:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(245,158,11,0.2); }

/* FLOATING HEADER */
.header {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
  width: 95%; max-width: 1200px; z-index: 9999;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
  border-radius: 100px; padding: 0.75rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.logo-area { display: flex; align-items: center; gap: 1rem; }
.logo-img { width: 40px; height: 40px; border-radius: 50%; }
.logo-text { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; color: var(--teal-900); line-height: 1.2; }
.logo-text span { display: block; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 400; color: var(--gray-600); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--gray-600); transition: color 0.3s; }
.nav-links a:hover { color: var(--teal-600); }
.header-actions { display: flex; gap: 1rem; }

/* HERO - Asymmetrical Split */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; padding-bottom: 10rem; background: var(--gray-100); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: clamp(1.6rem, 2.8vw, 2.8rem); margin-bottom: 1.5rem; line-height: 1.25; }
.hero-content h1 em { color: var(--teal-600); font-style: italic; }
.hero-content p { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 3rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; }
.hero-visual { height: 80vh; border-radius: 3rem; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 3rem; left: -3rem; background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-float); max-width: 300px; }
.hero-badge p { font-family: var(--font-serif); font-size: 1.25rem; color: var(--teal-900); font-style: italic; }

/* FLOATING INFO CARDS (Replaces CTA BAND) */
.info-cards { margin-top: -5rem; position: relative; z-index: 10; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.info-card { background: var(--white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1.5rem; }
.info-card.dark { background: var(--teal-900); color: var(--white); }
.info-card h3 { font-size: 2rem; font-family: var(--font-sans); color: inherit; }
.info-card.dark h3 { color: var(--sand-500); }
.info-card p { font-size: 1.1rem; }
.info-card a { font-weight: 600; text-decoration: underline; }

/* ABOUT - Overlapping Typography */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-box { position: absolute; bottom: -2rem; right: -4rem; background: var(--sand-100); padding: 2rem; border-radius: var(--radius-lg); max-width: 360px; box-shadow: var(--shadow-float); }
.about-quote-box blockquote { font-family: var(--font-serif); font-size: 1.1rem; color: var(--teal-900); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.about-quote-box strong { display: block; font-size: 0.85rem; color: var(--teal-600); text-transform: uppercase; letter-spacing: 0.05em; }
.about-content h2 { font-size: 3.5rem; margin-bottom: 2rem; }
.about-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--gray-600); }

/* MISSION - Bento Grid */
.mission { background: var(--teal-900); color: var(--white); }
.mission .subtitle { color: var(--sand-500); }
.mission h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 4rem; max-width: 800px; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; auto-rows: 300px; }
.bento-item { background: var(--teal-800); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; transition: transform 0.3s; }
.bento-item:hover { transform: translateY(-5px); }
.bento-item::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4)); opacity: 0.5; z-index: 1; }
.bento-item.large { grid-column: span 2; background: var(--teal-600); }
.bento-item.large::before { display: block; opacity: 0.3; }
.bento-item.large h3, .bento-item.large p { color: var(--white); }
.bento-content { position: relative; z-index: 2; }
.bento-item h3 { font-family: var(--font-sans); font-size: 1.75rem; color: var(--white); margin-bottom: 1rem; }
.bento-item p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* VIDEO - Cinematic Full Width */
.video-section { padding: 0; background: var(--gray-900); height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.video-container { width: 90%; max-width: 1400px; height: 80%; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.video-container iframe { width: 100%; height: 100%; object-fit: cover; }

/* TRANSPARENCY - Vertical Timeline / List */
.transparency { background: var(--white); }
.transparency h2 { font-size: 3.5rem; text-align: center; margin-bottom: 1rem; }
.transparency > .text-body { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.transparency .wrapper > .text-body { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.transp-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.transp-item { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding: 3rem; background: var(--gray-100); border-radius: var(--radius-lg); align-items: center; transition: background 0.3s; }
.transp-item:hover { background: var(--sand-100); }
.transp-item h3 { font-size: 2rem; font-family: var(--font-sans); margin-bottom: 1rem; }
.transp-item a { display: inline-block; margin-top: 1rem; color: var(--teal-600); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em; border-bottom: 2px solid var(--teal-600); padding-bottom: 4px; }

/* WSPARCIE - Donation Ticket */
.support { background: var(--teal-50); padding: 8rem 0; position: relative; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.support h2 { font-size: 3.5rem; margin-bottom: 2rem; }
.ticket { background: var(--white); border-radius: var(--radius-lg); padding: 4rem; box-shadow: var(--shadow-float); position: relative; border-left: 10px solid var(--sand-500); }
.ticket::before, .ticket::after { content: ''; position: absolute; width: 40px; height: 40px; background: var(--gray-100); border-radius: 50%; right: -20px; }
.ticket::before { top: 20%; }
.ticket::after { bottom: 20%; }
.ticket-label { font-size: 0.9rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ticket-number { font-size: clamp(2rem, 3vw, 2.5rem); font-family: monospace; color: var(--teal-900); font-weight: 700; margin-bottom: 2rem; padding: 1rem; background: var(--gray-100); border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.3s; }
.ticket-number:hover { background: var(--sand-100); }
.ticket-title { font-size: 1.25rem; font-weight: 600; color: var(--teal-900); margin-bottom: 0.5rem; }
.ticket-note { color: var(--gray-600); font-size: 0.95rem; }

/* CONTACT - Side by Side */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.contact-card { background: var(--gray-100); padding: 4rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-float); }
.contact-card h2 { font-size: 3rem; margin-bottom: 2rem; }
.contact-item { margin-bottom: 2rem; }
.contact-item h3 { font-family: var(--font-sans); font-size: 1.1rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.contact-item p { font-size: 1.2rem; font-weight: 500; color: var(--teal-900); cursor: pointer; transition: color 0.3s; }
.contact-item p:hover { color: var(--teal-600); }
.map-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-float); min-height: 400px; }
.map-card iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.footer { background: var(--teal-900); color: var(--white); padding: 6rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo-text { color: var(--white); font-size: 1.5rem; margin-top: 1rem; }
.footer-brand span { color: var(--sand-500); }
.footer h4 { color: var(--sand-500); font-family: var(--font-sans); font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer ul { display: flex; flex-direction: column; gap: 1rem; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.regs { display: flex; gap: 2rem; }

/* TOAST */
.copy-toast { position: absolute; background: var(--teal-900); color: white; padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.8rem; transform: translateY(-100%); opacity: 0; transition: 0.3s; pointer-events: none; }
.copied .copy-toast { opacity: 1; transform: translateY(-150%); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .support-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 50vh; }
  .hero-badge { display: none; }
  .about-quote-box { position: relative; right: 0; bottom: 0; margin-top: -3rem; margin-left: auto; margin-right: 2rem; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .transp-item { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header { padding: 1rem; width: 90%; }
  .nav-links { display: none; }
  .header-actions { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .regs { flex-direction: column; gap: 0.5rem; }
  .contact-card { padding: 2rem; margin: 1rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .about-content h2, .mission h2, .transparency h2, .support h2, .contact-card h2 { font-size: 2.5rem; }
}
