@import url('../common.css');

:root {
  --hero-bg-image: url('../../zasoby/obrazy/oferta/konstrukcje-glowne.jpg');
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--accent-color);
  padding: 15px 0;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 33vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000;
}

/* tło hero korzysta z common.css */

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e9e9e9;
    margin: 0 auto 18px auto;
    max-width: 760px;
    line-height: 1.6;
}

.hero-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    display: none;
}

/* Types Grid */
.parapety-types {
  padding: 80px 0;
}

.parapety-types h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

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

.type-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.type-image {
  height: 200px;
  overflow: hidden;
}

.type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.type-card:hover .type-image img {
  transform: scale(1.1);
}

.type-content {
  padding: 30px;
}

.type-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.type-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.type-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
}

.type-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.price-info {
  text-align: center;
  padding: 15px;
  background: var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background: var(--accent-color);
}

.comparison-section h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.comparison-item {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.comparison-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.comparison-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.comparison-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.comparison-features h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.comparison-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.comparison-features li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-dark);
}

.comparison-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

/* ...dalsza część stylu jak w parapety.css... */

/* Intro block */
.intro-block {
    padding: 48px 0 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.intro-lead {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.intro-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px 20px;
}

.intro-highlights li {
    position: relative;
    padding-left: 22px;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.intro-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Przyciski */
.btn {
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 22px;
}

/* CTA sekcja korzysta z oferta/common.css */

/* Przyciski */
.btn {
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
