/*
Theme Name: No Stress - Mildrive
Theme URI: https://mildrive.pl
Author: Mildrive Team
Author URI: https://mildrive.pl
Description: Nowoczesny motyw dla szkoły jazdy Mildrive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: no-stress
Tags: driving-school, education, business
*/

/* Reset i flexbox dla sticky footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content wypełnia przestrzeń */
.main-content {
  flex: 1 0 auto;
}

/* Footer na dole */
footer {
  flex-shrink: 0;
}

/* Fix dla admin bar WordPress */
body.admin-bar {
  padding-top: 0 !important;
}

body.admin-bar nav {
  top: 32px !important;
}

body.admin-bar .relative.bg-gray-900 {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar nav {
    top: 46px !important;
  }
  
  body.admin-bar .relative.bg-gray-900 {
    margin-top: 46px;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Formularz rezerwacji jazd */
.lesson-booking-form input,
.lesson-booking-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.lesson-booking-form button {
  background: #2563eb;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
}

.lesson-booking-form button:hover {
  background: #1d4ed8;
}