/**
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

#hero-section {
  position: relative;
  width: 100%;
  height: 620px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
  background-color: #fdfdfb;
  /* Kremowe tło jak na zdjęciu */
  font-family: 'Inter', sans-serif;
  align-items: center;
  user-select: none;
}

.hero-content {
  flex: 0 0 45%;
  z-index: 20;
  position: relative;
  margin-top: -50px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #222;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.1;
  color: #1a233a;
  font-weight: 800;
  margin: 15px 0;
  letter-spacing: -1px;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

/* Hand-drawn style brush underline */
.hero-title-underline {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2,10 Q150,2 298,8 Q150,15 2,10 Z' fill='%23C19A5B'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-btn {
  display: inline-block;
  margin-top: 60px;
  background-color: #d4a762;
  color: white;
  padding: 18px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 5px 5px rgba(212, 167, 98, 0.4), 0 0 6px 3px #d4a762;
  transition: transform 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.01);
  /* box-shadow: 0 10px 20px rgba(212, 167, 98, 0.5), 0 0 8px 5px #d4a762; */
}

/* --- KONTENER GALERII --- */

.gallery-wrapper {
  position: absolute;
  right: -5%;
  bottom: -11%;
  width: 1160px;
  height: 1200px; 
  pointer-events: none; 
  overflow: hidden; 
}

.gallery-skew-container {
  display: flex;
  flex-direction: row;
  gap: 15px;
  position: absolute;
  top: 0;
  left: 7.5%;
  transform: rotate(-12deg);
  transform-origin: center center; 
}


.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 3 kolumny - odwracamy marginesy, teraz ucinamy z góry a rośniemy w dół */
.col-1 {
  width: 300px;
  margin-top: 405px; /* Najniżej z lewej */
}

.col-2 {
  width: 420px;
  margin-top: 150px; /* Środkowa kolumna */
}

.col-3 {
  width: 280px;
  margin-top: 400px; /* Najwyżej u góry z prawej, ucięta */
}

/* Styl kart - usunięte letterboxing na prośbę, ujednolicone kwadraty/panoramy zaokraglone normalnie */
.card {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  /* Domyślnie 4:3 */
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  /* Zmiękczony cień */
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Wypełnia całą kartę wg ustaleń */
  display: block;
}

/* Złoty przycisk Play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(212, 167, 98, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.play-btn::after {
  content: '';
  display: block;
  border-left: 17px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 6px;
}

/* Responsywność */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-content {
    flex: 0 0 50%;
  }
}

@media (max-width: 1024px) {
  #hero-section {
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
  }

  .hero-content {
    margin-top: 0;
    margin-bottom: 60px;
    flex: auto;
    width: 100%;
  }

  .gallery-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 600px;
  }

  .col-2 {
    margin-bottom: 150px;
  }

  .col-3 {
    margin-bottom: 250px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}