/* ===== COLOR VARIABLES ===== */
:root {
  --gold-primary: #caa45d;
  --gold-soft: #e6c889;
  --silver-primary: #f3f3f3;
  --background: #ffffff;
  --text-dark: #222;
  --text-light: #555;
  --radius: 12px;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Calibri', sans-serif;
}

body {
  background: var(--background);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 12pt;
}

/* ===== SECTION LAYOUT ===== */
section {
  padding: 80px 10%;
  background: var(--background);
}

section:nth-child(even) {
  background: var(--silver-primary);
}

section h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* ===== TOP CONTACT BAR ===== */
.top-contact {
  background: #111;
  color: white;
  font-size: 14px;
  padding: 8px 10%;
}

.contact-container {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

/* ===== HEADER ===== */
.inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 180px;
  width: auto;
  display: block;
}

/* ===== NAVIGATION ===== */
.menu-toggle {
  display: none;
  background: var(--gold-primary);
  color: white;
  border: none;
  font-size: 26px;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav .book-btn {
  background: var(--gold-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
}

.site-nav .book-btn:hover {
  background: var(--gold-soft);
  color: black;
}

/* ===== HERO ===== */
.hero,
.page-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
  padding: 70px 10%;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content {
  max-width: 550px;
}

.hero-content p,
.page-hero p {
  font-size: 18px;
  color: var(--text-light);
}

/* ===== IMAGES ===== */
.hero-img,
.story-image img,
.team-member img,
.services-grid div img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-img:hover,
.story-image img:hover,
.team-member img:hover,
.services-grid div img:hover,
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===== GRID LAYOUTS ===== */
.services-grid,
.features-grid,
.contact-grid,
.team-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ===== CARDS ===== */
.service-card,
.features-grid div,
.contact-card,
.value-card,
.team-member,
.news-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover,
.features-grid div:hover,
.contact-card:hover,
.value-card:hover,
.team-member:hover,
.news-card:hover {
  transform: translateY(-5px);
}

/* ===== SERVICE SECTION ===== */
.service-card h3 {
  margin: 15px 0;
  font-size: 24px;
}

.service-icon,
.service-card .material-icons {
  font-size: 42px;
  color: var(--gold-primary);
}

.service-list {
  text-align: left;
  margin-top: 15px;
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.service-list strong {
  color: var(--text-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: black;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  text-decoration: none;
  color: var(--gold-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== FORMS ===== */
.booking-section,
.booking-container {
  background: var(--silver-primary);
}

.booking-container {
  max-width: 750px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.booking-description {
  margin-bottom: 15px;
}

.booking-notice {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}

.booking-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid var(--gold-primary);
}

/* ===== CONTACT LINKS ===== */
.contact-card a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--text-dark);
}

/* ===== GALLERY SLIDESHOW ===== */
.gallery-slideshow {
  padding: 50px 10%;
  text-align: center;
  background: var(--silver-primary);
}

.slideshow-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.slideshow-container img.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow-container img.slide.active {
  opacity: 1;
}

.slideshow-container .prev,
.slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  user-select: none;
  transition: 0.3s;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  background: rgba(0,0,0,0.8);
}

.slideshow-container .prev {
  left: 10px;
}

.slideshow-container .next {
  right: 10px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  text-align: center;
}

.gallery-section p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* ===== NEWS SECTION ===== */
.news-section {
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.news-card h3 {
  margin-bottom: 10px;
  color: var(--gold-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--silver-primary);
  padding: 40px 10%;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

/* ===== FLOATING BOOK BUTTON ===== */
.floating-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--gold-primary);
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
  z-index: 999;
}

.floating-book:hover {
  background: var(--gold-soft);
  color: black;
}

/* ===== SOCIAL FLOATING BUTTONS ===== */
.social-floating {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.1);
}

.whatsapp {
  background: #25D366;
}

.instagram {
  background: #E4405F;
}

.facebook {
  background: #1877F2;
}

.linkedin {
  background: #0A66C2;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  section {
    padding: 60px 6%;
  }

  .inner {
    padding: 15px 6%;
  }

  .site-logo {
    height: 95px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: 6%;
    width: 220px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
  }

  .hero,
  .page-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-content p,
  .page-hero p {
    font-size: 16px;
  }

  .services-grid,
  .features-grid,
  .contact-grid,
  .team-grid,
  .values-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .floating-book {
    right: 15px;
    bottom: 15px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .social-floating {
    left: 15px;
    bottom: 15px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}