/* Shoukear.com — shared stylesheet */

:root {
  --color-primary: #b5651d;      /* warm terracotta */
  --color-primary-dark: #8f4e15;
  --color-secondary: #1f5f5b;    /* deep teal */
  --color-bg: #fdfaf5;           /* warm off-white */
  --color-bg-alt: #f4ece0;
  --color-text: #2b2420;
  --color-text-muted: #6b5f54;
  --color-border: #e6d9c6;
  --radius: 10px;
  --max-width: 1080px;
  --font-body: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-secondary);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / nav */

.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
}

.nav__brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
}

.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-primary);
}

.nav__cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 720px) {
  .nav__toggle {
    display: inline-block;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
  }
  .nav__links.is-open {
    display: flex;
  }
}

/* Hero */

.hero {
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  padding: 64px 0 56px;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
  color: var(--color-primary-dark);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.hero__photo {
  position: relative;
  justify-self: center;
  max-width: 340px;
  width: 100%;
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 24px;
  opacity: 0.18;
  z-index: 0;
}

.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(43, 36, 32, 0.16);
}

@media (max-width: 800px) {
  .hero__photo {
    max-width: 280px;
    margin-top: 8px;
  }
}

.hero__image-placeholder {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn--secondary:hover {
  background: var(--color-secondary);
  color: #fff;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebb59;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sections */

section {
  padding: 56px 0;
}

section.alt {
  background: var(--color-bg-alt);
}

h2 {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-top: 0;
}

h3 {
  color: var(--color-secondary);
}

.section-intro {
  max-width: 640px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Card grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

/* Trust / badges */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 600;
}

/* Contact / booking */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.booking-placeholder {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--color-text-muted);
  background: #fff;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--color-text-muted);
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.whatsapp-float:hover {
  background: #1ebb59;
}
