/* ─────────────────────────────────────────────
   KONO COMPANY — style.css
   Font: Arial | Koule: #000000 #FFFFFF
───────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: inherit;
}
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  background: #000000;
  color: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden;
}

.yellow { color: #FFFFFF; }
/* Palèt: Nwa #000000 | Wouj #CC0000 | Blan #FFFFFF */

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
}

.nav-logo img { height: 40px; width: auto; }

.nav-pro-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 9px 18px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-pro-btn:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.nav-pro-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 22px;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:last-child { border-right: none; }
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
}

/* ─── HERO LOGO ──────────────────────────────── */
.hero-logo-section {
  display: flex;
  justify-content: center;
  padding: 36px 24px 0;
  background: #000000;
}
.hero-logo-img { height: 70px; width: auto; }

/* ─── PUBLICITY SPACE ────────────────────────── */
.publicity-space {
  position: relative;
  width: 100%;
  height: 520px;
  background: #000000;
  overflow: hidden;
  margin-top: 20px;
}

/* ─── SLIDER ─────────────────────────────────── */
.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: #FFFFFF; }

.booking-btn-wrap {
  position: absolute;
  bottom: 36px;
  right: 60px;
}

.btn-booking {
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  border: 2.5px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 16px 52px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  display: inline-block;
}
.btn-booking:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

/* ─── HERO TEXT ──────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  background: #000000;
}

.hero-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-filled {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-filled:hover { background: #FFFFFF; color: #000000; border-color: #FFFFFF; }

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: #FFFFFF; color: #000000; border-color: #FFFFFF; }

.hero-desc {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  max-width: 800px;
  margin-bottom: 50px;
}

/* ─── SERVICES ───────────────────────────────── */
.services {
  padding: 0 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px 20px 80px;
  min-height: 160px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.service-card-link {
  text-decoration: none;
  display: block;
  position: relative;
}

.card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: rgba(0,0,0,0.25);
  display: flex;
  transition: color 0.2s, transform 0.2s;
}

.card-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-link:hover .card-arrow {
  color: #000000;
  transform: translateX(3px);
}

.card-header { display: flex; align-items: flex-start; gap: 12px; }

.service-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  color: #000000;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
}

/* ─── NEWSLETTER ─────────────────────────────── */
.newsletter {
  background: #000000;
  padding: 50px 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.newsletter-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  line-height: 1.6;
}
.newsletter-text p::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #FFFFFF;
  margin-top: 12px;
}

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }

.nl-input {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 14px;
  width: 180px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-input:focus { border-color: #FFFFFF; }

.nl-btn {
  background: #FFFFFF;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nl-btn:hover { background: #000000; color: #FFFFFF; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #000000;
  padding: 60px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.8fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 18px; }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: rgba(255,255,255,0.1);
}

.footer-contact { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
}
.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: #FFFFFF; }

.footer-links-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.footer-links-grid a, .footer-links-row a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-grid a:hover, .footer-links-row a:hover { color: #FFFFFF; }
.footer-links-row { display: flex; flex-wrap: wrap; gap: 8px 16px; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #FFFFFF; }

/* ─── AKSESIBILITE FOCUS ──────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── HAMBURGER MENU (mobil) ──────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .services { padding: 0 20px 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .booking-btn-wrap { right: 20px; bottom: 20px; }
  .btn-booking { font-size: 20px; padding: 12px 36px; }
}

@media (max-width: 700px) {
  .navbar { padding: 14px 20px; position: relative; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    gap: 4px;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    z-index: 99;
    backdrop-filter: blur(10px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; padding: 10px 6px; width: 100%; }
  .nav-pro-btn { font-size: 12px; padding: 8px 14px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .newsletter-inner { flex-direction: column; }
}

/* ─── Respect prefers-reduced-motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .slide { transition: none; }
}
