/* ==========================================================================
   Piotr Massage – Mobile Therapy
   Premium paleta 2026: głęboki butelkowy zielony + ciepłe złoto
   Wszystkie style oryginalne – tylko kolory i organizacja odświeżone
   ========================================================================== */

html {
  touch-action: pan-x pan-y;
}

:root {
  --primary:       #0A3D2E;     /* głęboki butelkowy zielony – główny akcent */
  --accent:        #D4AF70;     /* ciepłe złoto – hover, wyróżnienia */
  --bg:            #FDFBF7;     /* ciepłe, prawie białe tło strony */
  --light:         #F5F0E9;     /* kremowe tło sekcji */
  --border:        #E0D9CF;     /* delikatna, ciepła granica */
  --text:          #1F1F1F;     /* ciemniejszy, ale nie czarny tekst */
  --text-light:    #5C5C5C;     /* szary tekst drugorzędny */

  --shadow:        0 3px 10px rgba(10, 61, 46, 0.09);
  --shadow-lg:     0 6px 22px rgba(10, 61, 46, 0.12);
}

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

body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: #111;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 2rem 0 1rem;
}

h1.hero-title {
  color: #FDFDFD;
  text-shadow: 0 2px 5px rgba(0,0,0,0.45);
}

h1.intro-title,
h1.prices-title {
  color: #111;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin: 1.5rem 0 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 1.2rem 0 .8rem;
}

p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

blockquote {
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light);
  font-style: italic;
  font-size: 1.125rem;
  color: #444;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  loading: lazy;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.logo-img {
  padding: 10px 0;
  display: block;
  width: auto;
  height: auto;
}

nav ul {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

nav a {
  transition: opacity .3s ease;
}

nav a:hover {
  opacity: .7;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 11;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  transition: all .3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
  position: relative;
}

.nav ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  padding: 1rem 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.nav.active ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav.active ul li {
  text-align: center;
  padding: .5rem 0;
}

.nav.active ul li a {
  display: block;
  padding: .5rem 1rem;
  font-size: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  padding: .5rem 1rem;
  border-radius: 26px;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: background .3s ease;
}

.btn:hover {
  background: var(--accent);
  color: #111;
  text-decoration: none;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.hero {
  background: url(/images/massage-london_001.webp) no-repeat center/cover;
  padding: clamp(8rem, 15vw, 12rem) 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 61, 46, 0.42);  /* zielony overlay zamiast brązowego */
}

.hero-content {
  position: relative;
  max-width: 550px;
  text-align: left;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.intro-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.intro-section h1 {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.prices {
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 2.5rem);
}

.services-grid div {
  text-align: center;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.services-grid h3 {
  margin: 1rem 0 .5rem;
  color: #111;
}

.services-grid ul {
  margin-top: 1rem;
  padding-left: 1rem;
  text-align: left;
}

.services-grid ul li {
  margin-bottom: .75rem;
  position: relative;
}

.services-grid ul li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.booking-form {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
  box-shadow: var(--shadow-lg);
}

.booking-form h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500;
  color: #71717A;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 61, 46, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit button {
  padding: .8rem 2.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  transition: background .3s ease;
}

.form-submit button:hover {
  background: var(--accent);
}

/* ==========================================================================
   FAQ & Banner
   ========================================================================== */

.faq-banner {
  background: url(/images/massage-london_005.webp) no-repeat center/cover;
  padding: clamp(20rem, 25vw, 22rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  text-align: center;
}

.faq-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 61, 46, 0.18);
}

.faq-banner p {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,.5);
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.faq {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.faq h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  max-width: 800px;
  margin: auto;
}

.faq-item p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.faq-question {
  color: #333;
  font-weight: 600;
}

/* ==========================================================================
   Contact & Footer
   ========================================================================== */

.contact {
  background: url(/images/massage-london_007.webp) no-repeat center/cover;
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.62);
}

.contact-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.contact h1 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

.contact p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.contact-btn {
  padding: .75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: all .3s ease;
  font-weight: 500;
}

.outline-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.outline-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.fill-btn {
  background: #fff;
  color: #000;
}

.fill-btn:hover {
  opacity: .9;
}

.footer {
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  background: var(--light);
}

.footer h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 1rem;
}

.footer h6 a {
  color: var(--primary);
  font-weight: 600;
}

.footer p {
  color: var(--text-light);
}

/* ==========================================================================
   Animations & Messages
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Status & Toast */
.form-status,
.toast {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

.form-status.success,
.toast.success {
  background: #e6ffed;
  color: #006600;
  border: 1px solid #b3e6c4;
}

.form-status.error,
.toast.error {
  background: #ffe6e6;
  color: #c00;
  border: 1px solid #ffcccc;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  padding: 1rem 1.5rem;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .3s ease;
  transform: translateX(100%);
}

.toast.fade-out {
  transform: translateX(100%);
  opacity: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
  .nav ul {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: block;
  }

  nav ul {
    flex-direction: column !important;
    gap: 0 !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.1) !important;
    padding: .5rem 0 !important;
    margin: 0 !important;
    transform: translateY(-100%) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    transition: transform .3s ease !important;
    z-index: 9 !important;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }

  .nav.active ul {
    transform: translateY(0) !important;
    visibility: visible !important;
  }

  .nav.active ul li {
    text-align: center;
    padding: .25rem 0;
  }

  .nav.active ul li a {
    display: block;
    padding: .75rem 1rem;
    font-size: 1rem;
  }
  nav ul li a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.32s ease;
 }

	nav ul li a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);     /* bardzo lekki lift */
  box-shadow: 0 4px 12px rgba(10, 61, 46, 0.18);
}

  .logo-img {
    max-height: 50px;
  }

  .btn {
    padding: .75rem 1.5rem;
    font-size: .9rem;
  }

  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: center;
  }

  .hero {
    background-position: center;
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .faq-banner {
    padding: clamp(15rem, 20vw, 18rem) 0 clamp(3rem, 6vw, 4rem);
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .booking-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .intro-section blockquote {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .625rem .875rem;
    font-size: .95rem;
  }

  .form-submit button {
    padding: .75rem 2rem;
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 .75rem;
  }

  h1, h2, h3 {
    text-align: center;
  }

  .contact-buttons a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .faq-item p {
    font-size: .95rem;
    line-height: 1.6;
  }
}
