/* ===============================================
   COMMON STYLES - Used Across All Pages
   =============================================== */
html {
  scroll-behavior: smooth !important;
}

:root {
  --primary: #0b5e4f;
  --accent: #f4f1e8;
  --text: #222;
  --muted: #666;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--accent);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */

header {
  background-color: var(--white);
  box-shadow: 0 2px 4px var(--shadow);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  color: #0b5e4f;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 52px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #0b5e4f;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #0b5e4f;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active {
  color: #0b5e4f !important;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0b5e4f;
  margin-left: auto;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 16px 0;
    gap: 16px;
    text-align: left;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #0b5e4f;
    transition: width 0.3s ease;
  }

  .nav-links li a:hover {
    color: #0b5e4f;
  }

  .nav-links li a:hover::after {
    width: 100%;
  }
}

/* ===============================================
   FOOTER
   =============================================== */

.footer-info {
  color: #333;
  padding: 48px 24px;
  font-size: 16px;
  background-color: #0b5e4f;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.footer-block h3,
.footer-block h4 {
  color: #f9f9f9;
  margin-bottom: 12px;
  font-size: 22px;
}

.footer-block p,
.footer-block a {
  color: #f9f9f9;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-btn {
  display: inline-block;
  background-color: #051411;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-btn:hover {
  background-color: #1f7461;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #888;
}

.footer-btn-wrapper {
  text-align: left;
  margin-top: 12px;
}

.footer-cta {
  text-align: center;
  margin: 24px 0;
}

/* ===============================================
   GLOBAL COMPONENTS
   =============================================== */

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary);
  color: var(--white);
  background-color: #0a372f;
}

.btn.primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn.primary:hover {
  background-color: #0a372f;
  color: var(--white);
}

.section {
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary);
}

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

.card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 20px;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  margin-bottom: 8px;
}

.card-icon {
  font-size: 40px;
  color: #0b5e4f;
  margin-bottom: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.form {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  max-width: 600px;
  margin: auto;
}

.form label {
  display: block;
  margin-top: 16px;
  font-weight: bold;
}

.form input,
.form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form button {
  margin-top: 20px;
}

.btn-book {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: var(--primary);
  color: var(--white);
}

.btn-book:hover {
  background-color: #0a372f;
}

.btn-call {
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background-color: #0a372f;
  color: white;
}
