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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #000;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000000f2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #fffc;
  text-decoration: none;
  font-weight: 400;
  transition: color .3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: .3s;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: .9;
  color: #ffffffe6;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: #ffffffe6;
}

.location-icon {
  width: 20px;
  height: 20px;
  color: #3b82f6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: #0009;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #3b82f6;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: .8;
  color: #fffc;
}

.hero-cta {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all .3s ease;
  box-shadow: 0 4px 20px #3b82f64d;
}

.hero-cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #3b82f666;
}

/* Section base */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #ffffffb3;
  font-weight: 300;
}

/* Investment */
.investment {
  background: #111;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.investment-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 2rem;
  transition: transform .3s ease, border-color .3s ease;
}

.investment-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.card-icon {
  width: 48px;
  height: 48px;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.card-content {
  color: #fffc;
  line-height: 1.6;
}

.card-content p {
  margin-bottom: .75rem;
}

.status-success {
  color: #10b981 !important;
  font-weight: 500;
}

.note {
  font-size: .9rem;
  color: #3b82f6 !important;
  font-style: italic;
}

.investment-highlight {
  text-align: center;
  margin-bottom: 4rem;
}

.investment-highlight h3 {
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: 300;
  text-decoration: underline;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  text-align: center;
}

.gallery-item h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Offer */
.offer {
  background: #000;
}

.offer-main {
  margin-bottom: 3rem;
}

.offer-details {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.offer-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.detail-label {
  color: #ffffffb3;
  font-size: .9rem;
}

.detail-value {
  color: #fff;
  font-weight: 500;
}

.detail-value.price {
  color: #3b82f6;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.feature-list li {
  color: #fffc;
  font-size: .95rem;
}

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

.spec-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 2rem;
}

.spec-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.spec-card ul {
  list-style: none;
  color: #fffc;
  line-height: 1.6;
}

.spec-card li {
  margin-bottom: .5rem;
  font-size: .9rem;
}

.spec-content {
  color: #fffc;
  line-height: 1.6;
}

.spec-content p {
  margin-bottom: .75rem;
  font-size: .9rem;
}

/* Plans */
.architectural-plans {
  background: #0a0a0a;
  padding: 80px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.plan-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.plan-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plan-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
}

.plan-card p {
  color: #fffc;
  font-size: .9rem;
  line-height: 1.4;
}

.plans-note {
  text-align: center;
  margin-top: 2rem;
}

.plans-note p {
  color: #fff9;
  font-size: .9rem;
}

.plan-details {
  text-align: left;
}

.plan-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
  text-align: center;
}

.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fffc;
  font-size: .85rem;
  line-height: 1.4;
}

.plan-list li {
  margin-bottom: .25rem;
}

.plan-summary {
  font-weight: 600;
  color: #3b82f6;
  margin-top: .75rem;
  text-align: center;
}

.plan-height {
  font-size: .8rem;
  color: #fff9;
  text-align: center;
  margin-top: .25rem;
}

.plans-summary {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.plans-summary h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

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

.summary-grid p {
  color: #fffc;
  font-size: .9rem;
  margin-bottom: .5rem;
}

.summary-grid strong {
  color: #fff;
}

.total-area {
  color: #3b82f6 !important;
  font-weight: 600 !important;
}

.disclaimer {
  color: #fff9 !important;
  font-size: .8rem !important;
  text-align: center;
  margin-top: 1rem;
}

/* Quote */
.quote {
  background: #0a0a0a;
  padding: 60px 0;
}

.quote-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #3b82f6;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

/* Developer */
.developer {
  background: #000;
}

.developer-info {
  max-width: 800px;
  margin: 0 auto;
}

.developer-details {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.developer-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.company-details {
  color: #fffc;
  line-height: 1.6;
}

.company-details p {
  margin-bottom: .5rem;
}

.developer-column p {
  color: #fffc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.experience-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fffc;
}

.experience-highlight svg {
  width: 20px;
  height: 20px;
  color: #3b82f6;
}

/* Contact */
.contact {
  background: #0a0a0a; /* ciemne tło, jak sekcja .quote */
}

.contact .section-title {
  color: #fff;
}

.contact .section-subtitle {
  color: #ffffffb3;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.contact-info,
.contact-form {
  background: #1a1a1a; /* ciemne boxy */
  border: 1px solid #333;
  border-radius: 16px;
  padding: 2rem;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff; /* domyślnie biały dla ikony i tekstu */
  transition: color .3s ease;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item a {
  color: inherit;  /* dziedziczy kolor z .contact-item */
  text-decoration: none;
  transition: color .3s ease;
}

.contact-item:hover {
  color: #3b82f6; /* zmiana koloru dla ikony i tekstu razem */
}


.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color .3s ease;
  background: #0a0a0a;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: #1a1a1a;
}

.submit-btn {
  width: 100%;
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .3s ease;
}

.submit-btn:hover {
  background: #2563eb;
}


.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color .3s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}

.submit-btn {
  width: 100%;
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .3s ease;
}

.submit-btn:hover {
  background: #2563eb;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-description {
  color: #ffffffb3;
  line-height: 1.6;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact,
.footer-legal {
  color: #ffffffb3;
  line-height: 1.6;
}

.footer-contact p,
.footer-legal p {
  margin-bottom: .5rem;
  font-size: .9rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #fff9;
  font-size: .9rem;
}

/* Media queries */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000000fa;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left .3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.2rem;
    margin: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .offer-details {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .offer-specs {
    grid-template-columns: 1fr;
  }

  .developer-details {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .investment-card,
  .spec-card,
  .offer-details,
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
}
.quote-small {
  font-size: 14px;        /* mniejsza czcionka */
  font-weight: 300;
  color: #3b82f6;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}
.nowrap {
  white-space: nowrap;
}
