/* Fundacja Felicja - Clean & Minimal Styles */

:root {
  --purple: #6a1b9a;
  --purple-dark: #4a148c;
  --orange: #f59e0b;
  --blue: #0ea5e9;
  --pink: #ef476f;
  --cream: #fbf6ee;
  --white: #ffffff;
  --gray-dark: #1f2937;
  --gray: #6b7280;
  --gray-light: #f3ece0;
  --shadow: 0 10px 40px rgba(0,0,0,.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-dark);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Minimal */
header {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

.heart {
  width: 32px;
  height: 32px;
}

/* Hero - Clean & Bold */
.hero {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 10vw, 80px);
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--gray-dark);
}

.hero h1 span {
  color: var(--orange);
}

.subtitle {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mission - Simple */
.mission {
  padding: 80px 0;
  background: var(--cream);
}

.mission-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 24px;
  color: var(--purple);
}

.mission p {
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}

.mission strong {
  color: var(--gray-dark);
}

/* Collections */
.collections {
  padding: 80px 0;
  background: var(--white);
}

.collections h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-dark);
}

.collection-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .collection-cards {
    grid-template-columns: 2fr 1fr;
  }
}

.collection-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 40px 32px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.collection-card.featured {
  background: linear-gradient(135deg, #f3e7ff 0%, #ffe8e8 100%);
  border-color: var(--purple);
}

.collection-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.collection-card.upcoming {
  opacity: 0.6;
  cursor: default;
}

.collection-card .year {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.collection-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 4vw, 28px);
  margin-bottom: 12px;
  color: var(--gray-dark);
}

.collection-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1rem;
}

.link-arrow {
  color: var(--purple);
  font-weight: 700;
  font-size: 1rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--cream);
}

.about h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

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

.about-card .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--purple);
}

.about-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Founder Section */
.founder {
  padding: 80px 0;
  background: var(--white);
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder-content {
    grid-template-columns: 1fr 2fr;
  }
}

.founder-image {
  text-align: center;
}

.photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.founder-text .label {
  display: inline-block;
  color: var(--purple);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.founder-text h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.founder-text p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.founder-text em {
  color: var(--purple);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--purple);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: clamp(17px, 3vw, 20px);
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--purple);
}

.cta-section .btn-primary:hover {
  background: var(--cream);
}

.cta-section .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--purple);
}

/* Footer */
footer {
  padding: 48px 0 32px;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr auto;
  }
}

footer strong {
  color: var(--purple);
  font-size: 1.1rem;
}

footer p {
  color: var(--gray);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.copyright {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}
