/* style.css - Główne style dla całej strony */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #4ECDC4;
  --accent-color: #FFE66D;
  --dark-color: #292F36;
  --light-color: #F7FFF7;
  --text-color: #333;
  --text-light: #777;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nagłówek */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 150px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover, 
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Przyciski */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #3dbeb6;
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Sekcja Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/tło1111.jp');
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 90px;
}

.hero-content {
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.cta-buttons .btn i {
  margin-right: 10px;
}

/* Sekcje ogólne */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Karty cech */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Oferta */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.offer-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.offer-info {
  padding: 20px;
  text-align: center;
}

.offer-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.offer-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Sekcja o nas */
.about-preview {
  background-color: var(--secondary-color);
  color: white;
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.highlight {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.about-details {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text ul {
  list-style: none;
  margin: 20px 0 30px;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-text ul li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Stopka */
footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.9);
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-col i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.fb-btn {
  background-color: #3b5998;
}

.ig-btn {
  background-color: #E1306C;
}

.tt-btn {
  background-color: #000000;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsywność */
@media (max-width: 992px) {
  .about-details {
      flex-direction: column;
  }
  
  .about-text, .about-image {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  nav ul {
      position: fixed;
      top: 90px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 90px);
      background-color: white;
      flex-direction: column;
      align-items: center;
      padding: 40px 0;
      transition: left 0.3s;
  }
  
  nav ul.active {
      left: 0;
  }
  
  nav ul li {
      margin: 15px 0;
  }
  
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .subtitle {
      font-size: 1.2rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 2rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .offer-grid, .features-grid {
      grid-template-columns: 1fr;
  }
}