/* ========================================
   SKELETON + MINIMALIST JAPAN STYLE
   PristineGlaze - Mycie Okien Kraków
   ======================================== */

/* Base Styles (Skeleton) */
*, *:after, *:before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #222;
  font-family: 'Segoe UI', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}

/* Japanese Minimalist Typography */
h1, h2, h3, h4, h5, h6 {
  color: #2E86AB;
  font-weight: 300;
  letter-spacing: -.1rem;
  margin-bottom: 2.0rem;
  margin-top: 0;
  line-height: 1.2;
}

h1 { font-size: 4.0rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 3.0rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.5rem; }

/* Minimalist Layout Container */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Grid System (Skeleton) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.column, .columns {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.one.column,
.one.columns { width: 8.33333333%; }
.two.columns { width: 16.66666667%; }
.three.columns { width: 25%; }
.four.columns { width: 33.33333333%; }
.five.columns { width: 41.66666667%; }
.six.columns { width: 50%; }
.seven.columns { width: 58.33333333%; }
.eight.columns { width: 66.66666667%; }
.nine.columns { width: 75%; }
.ten.columns { width: 83.33333333%; }
.eleven.columns { width: 91.66666667%; }
.twelve.columns { width: 100%; }

/* Header - Japanese Minimalist Style */
header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

nav a {
  color: #555;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #2E86AB;
}

nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2E86AB;
}

/* Hero Section - Minimalist */
.hero {
  background: linear-gradient(rgba(46, 134, 171, 0.1), rgba(46, 134, 171, 0.1)), url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  text-align: center;
  color: #333;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  color: #2E86AB;
  font-weight: 200;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #666;
  font-weight: 300;
}

/* Buttons - Japanese Minimalist */
.button, button, input[type="submit"] {
  border: 1px solid #2E86AB;
  border-radius: 0;
  color: #2E86AB;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .1rem;
  line-height: 3.8rem;
  padding: 0 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  transition: all 0.3s ease;
}

.button:hover, button:hover, input[type="submit"]:hover {
  background: #2E86AB;
  color: #fff;
  border-color: #2E86AB;
}

.button.primary, button.primary, input[type="submit"].primary {
  background: #2E86AB;
  color: #fff;
}

/* Sections - Clean Japanese Style */
section {
  padding: 6rem 0;
  margin: 0;
}

.section-white {
  background: #ffffff;
}

.section-light {
  background: #fafafa;
}

/* Content Boxes */
.content-box {
  background: #ffffff;
  padding: 4rem;
  margin-bottom: 3rem;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Images - Minimalist */
img {
  height: auto;
  max-width: 100%;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease;
}

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

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

/* Forms - Japanese Minimalist */
input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 0;
  width: 100%;
  font-family: inherit;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
}

textarea {
  min-height: 6.5rem;
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
  resize: vertical;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-bottom: 1px solid #2E86AB;
  outline: 0;
}

label {
  color: #555;
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  padding: 3rem;
  border-left: 3px solid #2E86AB;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: #2E86AB;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 1rem;
  color: #2E86AB;
  width: 20px;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2E86AB;
}

/* Footer - Minimalist */
footer {
  background: #333;
  color: #ccc;
  padding: 4rem 0;
  margin-top: 6rem;
}

footer h4 {
  color: #ffffff;
  margin-bottom: 2rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #2E86AB;
}

.footer-social {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-social a {
  display: inline-block;
  padding: 1rem;
  border: 1px solid #555;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #2E86AB;
  color: #2E86AB;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* GDPR/RODO Elements */
.gdpr-notice {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  padding: 2rem;
  margin: 2rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
  gap: 1rem;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.checkbox-container label {
  margin: 0;
  font-size: 1.4rem;
  text-transform: none;
  line-height: 1.5;
}

/* Honeypot - hidden field */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}