/* Pulsująca animacja dla przycisku CTA */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 202, 64, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(243, 202, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 202, 64, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Ogólne style */
body {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
}

/* Gradient tła dla sekcji hero */
#hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, rgba(10, 1, 79, 0.9) 100%);
  margin-top: 0.5rem;
}

/* Stylizacja kart */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Nowe kolory - główne */
.primary-dark {
  color: #0a014f;
}

.primary-light {
  color: #f3ca40;
}

/* Klasy tła */
.bg-primary-dark {
  background-color: #0a014f;
}

.bg-primary-light {
  background-color: #f3ca40;
}

/* Stare kolory holenderskie - już nie używamy */
.dutch-blue {
  color: #0a014f;
}

.dutch-white {
  color: #FFFFFF;
}

.dutch-red {
  color: #0a014f;
}

.dutch-orange {
  color: #f3ca40;
}

/* Responsywne obrazy */
img {
  max-width: 100%;
  height: auto;
}

/* Stylizacja formularza */
input:focus {
  outline: none;
  border-color: var(--brand-dark);
}

/* Niestandardowe czcionki */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

/* Stylizacja sekcji */
section {
  position: relative;
  overflow: hidden;
}

/* Efekt fali dla niektórych sekcji */
.wave-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' class='shape-fill'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

/* Stylizacja nagłówków sekcji */
.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f3ca40;
}

/* Efekt podświetlenia dla przycisków */
.btn-highlight {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.btn-highlight:hover::before {
  left: 100%;
}

/* Stylizacja listy */
ul.feature-list li {
  position: relative;
  padding-left: 2rem;
}

ul.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f3ca40;
  font-weight: bold;
}

/* Responsywność */
@media (max-width: 768px) {
  .section-heading::after {
    width: 60px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.5rem !important; 
  }
  
  .section-heading::after {
    width: 40px;
  }
}

/* Menu mobilne */
.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
        position: relative;
        z-index: 60;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    
    .mobile-menu.open {
        right: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-close {
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: none;
        cursor: pointer;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
    }
    
    .mobile-menu a {
        color: #0a014f;
        text-decoration: none;
        border-bottom: 1px solid #f3f4f6;
        font-weight: 500;
    }
    
    .mobile-menu a:hover {
        color: #f3ca40;
    }
}

:root {
    --brand-dark: #0a014f;
    --brand-light: #f3ca40;
    --gradient-start: #f8fafc;
    --gradient-end: #ffffff;
}

.bg-brand-dark {
    background-color: var(--brand-dark);
}

.bg-brand-light {
    background-color: var(--brand-light);
}

.text-brand-dark {
    color: var(--brand-dark);
}

.text-brand-light {
    color: var(--brand-light);
}

.border-brand-dark {
    border-color: var(--brand-dark);
}

.border-brand-light {
    border-color: var(--brand-light);
}

/* Animacje */
.hover\:bg-opacity-90:hover {
    opacity: 0.9;
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

/* Przejścia */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Responsywność */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Stylizacja kart Q&A */
#czego-sie-nauczysz .grid > div {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#czego-sie-nauczysz .grid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-light);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

#czego-sie-nauczysz .grid > div:hover {
    transform: translateY(-5px);
}

#czego-sie-nauczysz .grid > div:hover::before {
    transform: scaleY(1);
}

#czego-sie-nauczysz .grid > div:hover span {
    transform: scale(1.1);
}

#czego-sie-nauczysz h3 {
    position: relative;
    transition: color 0.3s ease;
}

#czego-sie-nauczysz .grid > div:hover h3 {
    color: var(--brand-dark);
}

#czego-sie-nauczysz p {
    position: relative;
    transition: color 0.3s ease;
}

/* Gradient tła dla kart */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
}

/* Efekt fali dla sekcji */
.wave-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' class='shape-fill'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
} 