/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #eee;
  background: #121212;
}

a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Header */
.site-header {
  background: #1c1c1c;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
}

.logo { font-size: 1.4rem; font-weight: bold; }
.logo-mark { color: #00aaff; }
.nav { display: flex; gap: 1rem; }
.nav a:hover { color: #00aaff; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  background: #00aaff;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover { background: #0088cc; }
.btn--sm { padding: 0.4rem 0.8rem; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  background: url("2.jpg") no-repeat center/cover;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  background: rgba(0,0,0,0.7);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.hero p { margin-bottom: 1rem; color: #ccc; }

/* Sections */
.section { padding: 4rem 0; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 { font-size: 2rem; margin-bottom: 0.5rem; color: #fff; }
.section-head p { color: #aaa; }

/* Cards */
.grid.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }

.card-icon {
  font-size: 2.5rem;
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.card h3 { color: #fff; }
.card p { color: #bbb; }

/* Contact */
.grid.contact {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.form label { display: block; margin-top: 1rem; color: #ccc; }
.form input, .form textarea {
  width: 100%; padding: 0.7rem;
  border: 1px solid #444; border-radius: 5px;
  margin-top: 0.3rem;
  background: #222; color: #eee;
}
.form button { margin-top: 1rem; width: 100%; }

/* Contact info */
.info h3 { color: #fff; margin-bottom: 1rem; }
.list { list-style: none; margin-bottom: 1rem; }
.list li { margin-bottom: 0.5rem; color: #bbb; }
.info a { color: #00aaff; }


/* Mapka Google responsywna */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* proporcje 16:9 */
  height: 0;
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}


/* Footer */
.site-footer {
  background: #0d0d0d; color: #aaa;
  padding: 1rem 0; text-align: center;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
}
.backtotop { color: #00aaff; }

/* Animacje */
.fx-reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fx-reveal.show { opacity: 1; transform: translateY(0); }

.phone-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00aaff;
  margin-top: 0.5rem;
}
