/* ===================================
   ZMIENNE GLOBALNE
   =================================== */
:root {
  --max-width: 1100px;
}

/* Schemat kolorystyczny dla kobiet (różowo-złoty) */
body.theme-female {
  --accent: #ffd700;
  --accent-hover: #ffa500;
  --text-light: #fffacd;
  --muted: #2c2c2c;
  --gradient-start: #ffd6e7;
  --gradient-1: #ffb3d9;
  --gradient-2: #ff8dc7;
  --gradient-3: #ff6b9d;
  --gradient-4: #e85d8a;
  --gradient-5: #c06c84;
  --gradient-6: #9b6a7e;
  --gradient-end: #6c5b7b;
}

/* Schemat kolorystyczny dla mężczyzn (niebiesko-srebrny) */
body.theme-male {
  --accent: #00ced1;
  --accent-hover: #4682b4;
  --text-light: #e0ffff;
  --muted: #2c2c2c;
  --gradient-start: #b8e0f6;
  --gradient-1: #8ec5e6;
  --gradient-2: #5ba3d0;
  --gradient-3: #3a7ca5;
  --gradient-4: #2f6690;
  --gradient-5: #2d5f7e;
  --gradient-6: #2a4d69;
  --gradient-end: #1b3a52;
}

/* Domyślny schemat (różowo-złoty przed zalogowaniem) */
body {
  --accent: #ffd700;
  --accent-hover: #ffa500;
  --text-light: #fffacd;
  --muted: #2c2c2c;
  --gradient-start: #ffd6e7;
  --gradient-1: #ffb3d9;
  --gradient-2: #ff8dc7;
  --gradient-3: #ff6b9d;
  --gradient-4: #e85d8a;
  --gradient-5: #c06c84;
  --gradient-6: #9b6a7e;
  --gradient-end: #6c5b7b;
}

/* ===================================
   RESET I PODSTAWY
   =================================== */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family:
    Montserrat,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(
    to bottom,
    var(--gradient-start) 0%,
    var(--gradient-1) 15%,
    var(--gradient-2) 30%,
    var(--gradient-3) 45%,
    var(--gradient-4) 55%,
    var(--gradient-5) 70%,
    var(--gradient-6) 85%,
    var(--gradient-end) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  transition: background 1s ease;
  -webkit-transition: background 1s ease;
  -moz-transition: background 1s ease;
  -o-transition: background 1s ease;
  position: relative;
  overflow-x: hidden;
}

/* Dekoracje disco w tle */
body::before {
  content: "🪩";
  position: fixed;
  top: 10%;
  left: 5%;
  font-size: 6rem;
  opacity: 0.15;
  animation:
    rotate 20s linear infinite,
    float 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "🕺";
  position: fixed;
  bottom: 15%;
  right: 8%;
  font-size: 5rem;
  opacity: 0.15;
  animation: dance 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes dance {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-10px) scale(1.1);
  }
  50% {
    transform: translateY(0px) scale(0.9);
  }
  75% {
    transform: translateY(-5px) scale(1.05);
  }
}

/* Dekoracje disco - pozycjonowanie */
.disco-decoration {
  position: fixed;
  font-size: 4rem;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* Kule disco */
.disco-ball-1 {
  top: 15%;
  right: 10%;
  animation:
    rotate 15s linear infinite,
    float 5s ease-in-out infinite;
}

.disco-ball-2 {
  top: 60%;
  left: 8%;
  font-size: 5rem;
  animation:
    rotate 12s linear infinite reverse,
    float 7s ease-in-out infinite;
  animation-delay: 2s;
}

.disco-ball-3 {
  bottom: 20%;
  right: 15%;
  font-size: 3.5rem;
  animation:
    rotate 18s linear infinite,
    float 6s ease-in-out infinite;
  animation-delay: 1s;
}

/* Tancerze */
.dancer-1 {
  top: 40%;
  left: 12%;
  font-size: 4.5rem;
  animation: dance 2.5s ease-in-out infinite;
}

.dancer-2 {
  top: 70%;
  right: 12%;
  font-size: 4rem;
  animation: dance 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.dancer-3 {
  bottom: 30%;
  left: 15%;
  font-size: 3.5rem;
  animation: dance 2.8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Iskry i światła */
.sparkle-1 {
  top: 25%;
  left: 20%;
  font-size: 3rem;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-2 {
  top: 55%;
  right: 20%;
  font-size: 3.5rem;
  animation: sparkle 2.3s ease-in-out infinite;
  animation-delay: 0.7s;
}

.sparkle-3 {
  bottom: 40%;
  right: 25%;
  font-size: 3rem;
  animation: sparkle 1.8s ease-in-out infinite;
  animation-delay: 0.3s;
}

/* Nuty muzyczne */
.music-1 {
  top: 35%;
  right: 18%;
  font-size: 3rem;
  animation:
    float 4s ease-in-out infinite,
    fadeInOut 3s ease-in-out infinite;
}

.music-2 {
  bottom: 45%;
  left: 18%;
  font-size: 3.5rem;
  animation:
    float 5s ease-in-out infinite,
    fadeInOut 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Światło */
.light-1 {
  top: 50%;
  left: 50%;
  font-size: 4rem;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.5);
  }
}

/* ===================================
   GŁÓWNA ZAWARTOŚĆ - ANIMACJE
   =================================== */
#main-content {
  opacity: 1;
  -webkit-animation: fadeIn 0.8s ease;
  -moz-animation: fadeIn 0.8s ease;
  -o-animation: fadeIn 0.8s ease;
  animation: fadeIn 0.8s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#main-content.hidden {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
    -moz-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animacje scroll reveal */
.scroll-reveal {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition:
    opacity 1.2s ease-out,
    -webkit-transform 1.2s ease-out;
  -moz-transition:
    opacity 1.2s ease-out,
    -moz-transform 1.2s ease-out;
  -o-transition:
    opacity 1.2s ease-out,
    -o-transform 1.2s ease-out;
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* ===================================
   NAWIGACJA
   =================================== */
.site-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: rgba(30, 30, 50, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 40;
  border-bottom: none;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.nav .logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav .logo:hover {
  color: var(--accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.nav a:hover {
  color: var(--accent);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.nav-btn {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
  color: #fff !important;
  padding: 10px 24px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
  -moz-box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow: none;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  -webkit-transform: translateY(-3px) !important;
  -moz-transform: translateY(-3px) !important;
  -ms-transform: translateY(-3px) !important;
  -o-transform: translateY(-3px) !important;
  transform: translateY(-3px) !important;
  -webkit-box-shadow: 0 8px 30px rgba(255, 20, 147, 0.7);
  -moz-box-shadow: 0 8px 30px rgba(255, 20, 147, 0.7);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.7);
}

.hamburger {
  display: none;
}

/* ===================================
   SEKCJA HERO - ZAPROSZENIE
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: transparent;
  position: relative;
  width: 100%;
}

.hero .hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero .tag {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .date {
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  margin-top: 3rem;
  -webkit-animation: bounce 2s ease-in-out infinite;
  -moz-animation: bounce 2s ease-in-out infinite;
  -o-animation: bounce 2s ease-in-out infinite;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  display: inline-block;
}

/* ===================================
   PRZYCISKI
   =================================== */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #2c2c2c;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
  background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
}

/* ===================================
   KONTENERY SEKCJI
   =================================== */
.container {
  max-width: var(--max-width);
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 20px;
  background: transparent;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SZCZEGÓŁY
   =================================== */
.details-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.details-section::before {
  content: "✨";
  position: absolute;
  font-size: 10rem;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
  top: 10%;
  left: 10%;
}

.details-section::after {
  content: "🪩";
  position: absolute;
  font-size: 8rem;
  opacity: 0.15;
  animation: rotate 15s linear infinite reverse;
  bottom: 10%;
  right: 10%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.details-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.details-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.details-intro {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 1.5rem;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -webkit-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -moz-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-card:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.detail-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

.detail-card:nth-child(1) .detail-icon {
  animation-delay: 0s;
}
.detail-card:nth-child(2) .detail-icon {
  animation-delay: 0.2s;
}
.detail-card:nth-child(3) .detail-icon {
  animation-delay: 0.4s;
}
.detail-card:nth-child(4) .detail-icon {
  animation-delay: 0.6s;
}
.detail-card:nth-child(5) .detail-icon {
  animation-delay: 0.8s;
}
.detail-card:nth-child(6) .detail-icon {
  animation-delay: 1s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.detail-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.detail-card p {
  color: #fff;
  font-size: 0.95rem;
  margin: 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.detail-note {
  font-size: 0.85rem !important;
  color: #f0f0f0 !important;
  font-style: italic;
  margin-top: 0.75rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.details ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

/* ===================================
   INSPIRACJE - GALERIA ZDJĘĆ
   =================================== */
.inspiracje {
  background: transparent;
  padding: 30px 20px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.inspiracje h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.inspiracje .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  grid-auto-flow: dense;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.inspiracje img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -moz-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inspiracje img:hover {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Stałe wysokości dla lepszego wyświetlania */
.inspiracje img:nth-child(3n + 1) {
  height: 280px;
}

.inspiracje img:nth-child(3n + 2) {
  height: 280px;
}

.inspiracje img:nth-child(3n + 3) {
  height: 280px;
}

/* ===================================
   SEKCJA KONTAKTOWA - POTWIERDZENIE
   =================================== */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  scroll-margin-top: 80px;
}

.contact-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-intro {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 2rem auto;
  max-width: 900px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 1.8rem;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -webkit-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -moz-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-details {
  text-align: left;
  margin: 0 auto;
  max-width: 350px;
}

.contact-details p {
  color: #fff;
  font-size: 0.95rem;
  margin: 0.75rem 0;
  line-height: 1.6;
  word-break: break-word;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-label {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  min-width: 110px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-note {
  font-size: 0.95rem;
  color: #fff;
  font-style: italic;
  margin-top: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Ukryj domyślne style linków w sekcji kontaktowej */
.contact-details a {
  color: inherit;
  text-decoration: none;
}

/* ===================================
   FORMULARZ I INPUTY
   =================================== */
input,
textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.success {
  margin-top: 12px;
  color: green;
}

/* ===================================
   MODAL LOGOWANIA
   =================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  z-index: 1000;
  -webkit-transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  -moz-transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  -o-transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.modal.hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  margin: 0 auto;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -webkit-animation: slideIn 0.6s ease;
  -moz-animation: slideIn 0.6s ease;
  -o-animation: slideIn 0.6s ease;
  animation: slideIn 0.6s ease;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
  color: #333;
  margin-bottom: 0.6rem;
}

.modal-content p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.modal-content input {
  margin: 8px 0;
  width: 100%;
  padding: 0.7rem;
  border: 2px solid #e0e0e0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  -webkit-transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  -moz-transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  -o-transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.modal-content input:focus {
  outline: none;
  border-color: #48bb78;
  -webkit-box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
  -moz-box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
}

#submit-name {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  padding: 0.7rem;
  font-size: 0.9rem;
  -webkit-transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  -moz-transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  -o-transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

#submit-name:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(72, 187, 120, 0.4);
  -moz-box-shadow: 0 10px 25px rgba(72, 187, 120, 0.4);
  box-shadow: 0 10px 25px rgba(72, 187, 120, 0.4);
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes slideIn {
  from {
    opacity: 0;
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   MODAL ZDJĘĆ
   =================================== */
#image-modal .modal-content {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  font-weight: bold;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.close:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: scale(1.1);
  border-color: #fff;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 20px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
  width: 55px;
  height: 55px;
}

.nav-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
  border-color: #fff;
}

.nav-arrow.prev {
  left: 10px;
}

.nav-arrow.next {
  right: 10px;
}

/* ===================================
   MAPA - SEKCJA Z LOKALIZACJĄ
   =================================== */
.map-section {
  min-height: 100vh;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.map-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.map-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.map-wrapper {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 50vh;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  display: block;
  width: 100%;
  height: 100%;
}

/* Link do mapy w karcie szczegółów */
.map-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.map-link:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===================================
   MEDIA QUERIES - RESPONSYWNOŚĆ
   =================================== */
@media (max-width: 800px) {
  .gallery .grid,
  .inspiracje .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner h1 {
    font-size: 2rem;
  }

  .hero .tag {
    font-size: 1rem;
  }

  .hero .date {
    font-size: 1rem;
  }

  .details-section h2 {
    font-size: 1.8rem;
  }

  .details-intro {
    font-size: 1rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .inspiracje {
    padding: 40px 20px;
  }

  .inspiracje h2 {
    font-size: 1.8rem;
  }

  .map-container h2 {
    font-size: 1.8rem;
  }

  .map-wrapper {
    padding: 10px;
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 50;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .nav {
    padding: 12px 16px;
  }

  .nav .logo {
    font-size: 18px;
    white-space: nowrap;
  }

  .nav ul {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: rgba(30, 30, 50, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav ul.active {
    right: 0;
  }

  .nav ul li {
    width: 100%;
    text-align: center;
  }

  .nav a {
    font-size: 1rem;
    display: block;
    padding: 12px;
  }

  .nav-btn {
    display: none !important;
  }

  .gallery .grid,
  .inspiracje .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 20px;
    min-height: calc(100vh - 60px);
  }

  .hero-inner h1 {
    font-size: 1.8rem;
  }

  .hero .tag {
    font-size: 0.95rem;
  }

  .hero .date {
    font-size: 0.95rem;
  }

  .details-section {
    padding: 30px 15px;
    scroll-margin-top: 100px;
  }

  .details-section h2 {
    font-size: 1.5rem;
  }

  .details-intro {
    font-size: 0.95rem;
  }

  .detail-card {
    padding: 1.2rem;
  }

  .detail-icon {
    font-size: 2rem;
  }

  .inspiracje {
    padding: 30px 15px;
  }

  .inspiracje h2 {
    font-size: 1.5rem;
  }

  .inspiracje img {
    height: auto !important;
    min-height: 150px;
  }

  .contact-section {
    scroll-margin-top: 120px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-intro {
    font-size: 0.95rem;
  }

  .map-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .map-container {
    padding: 0 1rem;
  }

  .map-wrapper {
    aspect-ratio: 1 / 1;
    max-height: 400px;
  }

  .map-wrapper iframe {
    height: 100% !important;
  }
}

/* ===================================
   MODALE KONTAKTOWE
   =================================== */
.contact-modal {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7) !important;
}

.contact-modal-content {
  cursor: default;
  position: relative;
  max-width: 450px;
  padding: 2.5rem;
}

.close-contact {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  -webkit-transition:
    color 0.3s ease,
    transform 0.3s ease;
  -moz-transition:
    color 0.3s ease,
    transform 0.3s ease;
  -o-transition:
    color 0.3s ease,
    transform 0.3s ease;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  line-height: 1;
  font-weight: 300;
}

.close-contact:hover {
  color: #ff1493;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-modal-content .contact-label {
  font-weight: 600;
  color: #666;
  font-size: 0.95rem;
}

/* ===================================
   IKONA WINYLU
   =================================== */
.vinyl-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    #000 0%,
    #000 15%,
    #1a1a1a 15%,
    #1a1a1a 18%,
    #000 18%,
    #000 35%,
    #1a1a1a 35%,
    #1a1a1a 37%,
    #000 37%,
    #000 50%,
    #1a1a1a 50%,
    #1a1a1a 52%,
    #000 52%,
    #000 65%,
    #1a1a1a 65%,
    #1a1a1a 67%,
    #000 67%
  );
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.vinyl-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: #2a2a2a;
  box-shadow: inset 0 0 3px rgba(255, 215, 0, 0.4);
}

.vinyl-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 4px var(--accent);
}
