:root {
  --primary: #ff6a00;
  --dark: #000000;
  --dark-soft: #111111;
  --muted: #aaaaaa;
  --radius: 16px;
  --maxw: 1140px;
}

/* RESET / BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background: var(--dark);
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* LAYOUT */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  background: var(--dark);
}

/* Make the FIRST section (hero text under the image) tighter */
.section:first-of-type {
  padding-top: 1.5rem;   /* reduce from 4rem – tweak this number if needed */
}

.section--alt {
  background: var(--dark-soft);
}

.section--dark {
  background: #000000;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid #222222;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.brand img {
  display: block;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a.btn--sm {
  padding-inline: 1.6rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 1.5rem;
}

/* HERO PHOTO + INTRO */

.hero-photo {
  background: #000;
  padding: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  max-width: var(--maxw);
  height: auto;          /* keep aspect ratio */
  margin: 0 auto;
  object-fit: contain;   /* always show full logo, no cropping */
}

.hero-intro {
  padding: 1.75rem 0 1.5rem;  /* spacing below hero */
  text-align: center;
}

.hero-intro h1 {
  font-size: 2.4rem;
  margin: 0 0 0.4rem;
}

.hero-intro .lead {
  font-size: 1.05rem;
  color: var(--muted);
}

/* small screens: slightly smaller heading */
@media (max-width: 900px) {
  .hero-intro h1 {
    font-size: 2.1rem;
  }
}

/* Mobile/tablet defaults */
.hero-intro {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero-intro h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero-intro .lead {
  font-size: 1.15rem;
  color: var(--muted);
}


/* BUTTONS */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;  /* NEW: make sure it can sit above other stuff */
  z-index: 10;         /* NEW: stops invisible layers blocking taps */
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
}

.btn--primary:hover {
  filter: brightness(1.1);
}

.btn--outline-light {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn--outline-dark {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn--sm {
  padding-block: 0.55rem;
  font-size: 0.9rem;
}

/* ABOUT */

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.portrait {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

/* SLIDER */

.slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.slides {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.slide.is-active {
  opacity: 1;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow.prev {
  left: 1.5rem;
}

.arrow.next {
  right: 1.5rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.dots button.is-active {
  background: #ffffff;
}

/* PRICING */

h2 {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.card {
  background: #151515;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

.price {
  border: 2px solid rgba(255, 106, 0, 0.5);
}

.price.featured {
  background: #181818;
}

.price h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}

.note {
  margin-top: 1.75rem;
  color: var(--muted);
}

/* REVIEWS */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.reviews .card {
  min-height: 0;
}

.reviews footer {
  margin-top: 1.25rem;
  font-weight: 600;
  color: #f5f5f5;
}

/* CONTACT */

.contact-options {
  margin-bottom: 2rem;
}
.contact-options .btn {
  min-width: 190px;   /* makes all four buttons at least this wide */
}
.form {
  margin-top: 1rem;
  max-width: 720px;
  margin-inline: auto;
  background: #151515;
}

.form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form span {
  display: block;
  margin-bottom: 0.3rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #333333;
  background: #000000;
  color: #ffffff;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #222222;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* FOOTER */

.site-footer {
  background: #040404;
  border-top: 1px solid #222222;
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* WHATSAPP FLOAT BUTTON */

.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* UTILITIES */

.center {
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .grid-2 {
    /* use 100% here so your editor stops whining about '1fr' */
    grid-template-columns: 100%;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    padding: 1rem 1.5rem 1.25rem;
    background: #000000;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-intro h1 {
    font-size: 2.1rem;
  }

  /* Mobile: slightly shorter slider box */
  .slides {
    min-height: 300px;
  }

  /* Mobile: keep nav logo a sensible size */
  .brand img {
    max-height: 28px;
    width: auto;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
.wa-icon {
  width: 26px;
  height: 26px;
  display: block;
}
.contact-options .btn-icon {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(1);
}
/* CONTACT BUTTON ICON LAYOUT */
.btn--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn--icon .btn-icon {
  width: 26px;
  height: 26px;
  display: block;
  margin-bottom: 0.25rem;
  /* make black SVGs appear white on coloured buttons */
  filter: invert(1);
}

/* Contact row – keep all buttons similar width */
.contact-options .btn {
  min-width: 210px;
}

/* Brand colours for contact buttons (use the contact-* classes) */
.contact-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.contact-call {
  background: #ff6a00;        /* your main orange */
  border-color: #ff6a00;
  color: #ffffff;
}

.contact-instagram {
  background: #e1306c;
  border-color: #e1306c;
  color: #ffffff;
}
.contact-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

/* Reviews buttons – Facebook blue theme */
.reviews-actions {
  margin-top: 1.5rem;
}

.reviews-actions .btn--primary {
  background: #1877f2;      /* Facebook blue */
  border-color: #1877f2;
  color: #ffffff;
}

.reviews-actions .btn--outline-light {
  background: transparent;
  border-color: #1877f2;
  color: #1877f2;
}

/* Mobile tweak – stop the huge circles and let them wrap nicely */
@media (max-width: 600px) {
  .contact-options {
    flex-wrap: wrap;
  }

  .contact-options .btn {
    flex: 1 1 calc(50% - 1rem);
    min-width: 0;
  }
}


}

