/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  /* Design Tokens from Analysis */
  --color-primary: #F94144;
  /* Red - Buttons/Accents */
  --color-secondary: #3F51B5;
  /* Indigo Blue - Hero background */
  --color-text: #333333;
  --color-text-light: #ffffff;
  --color-bg-light: #f9f9f9;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;

  --container-width: 1200px;
  --spacing-section: 4rem;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

/* Services */
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.service-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 8px;
  /* Less rounded */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  transition: transform 0.3s;
  border-top: 4px solid var(--color-secondary);
  /* Accent border */
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  /* If using emojis, maybe filter them to look more mono? or just leave as is */
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Removed duplicate .hero-visuals block */

/* Happy Guests / Gallery */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 3rem auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 600px;
  /* Taller for better impact */
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  /* Clean white buttons */
  color: var(--color-primary);
  border: none;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Utilities additional */
.text-center {
  text-align: center;
}

.section-padding {
  padding: 4rem 0;
}

.mb-large {
  margin-bottom: 4rem;
}

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

/* Booking Form */
.booking {
  background-color: var(--color-secondary);
  color: white;
}

.booking .section-title {
  color: white;
}

.booking .contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking input,
.booking textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.booking button {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  /* Or center if desired, but original often aligns left or center */
  margin-top: 1rem;
}

html {
  scroll-behavior: smooth;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.site-footer a {
  color: white;
  margin: 0 10px;
  font-weight: bold;
}

.site-footer a:hover {
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #D6282B;
  /* Darker red on hover */
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  /* More compact */
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  /* Slightly smaller */
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  text-decoration: none;
  /* Removed underline */
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
  /* Reduced from 80vh for compactness */
  /* Removed max-height to prevents overlap if content is taller */
}

.hero-content {
  background-color: var(--color-secondary);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  /* Reduced padding */
  /* Ensure it fills height if needed */
}

.hero-title {
  font-size: 3rem;
  /* Slightly smaller to fit compact view */
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  /* More punchy */
  letter-spacing: 1px;
}

.hero-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 450px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Hero Visuals */
.hero-visuals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-secondary);
  padding: 2rem 4rem;
  /* More padding for breathing room */
  gap: 1.5rem;
}

.hero-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  /* Pill shape */
  transition: all 0.3s ease;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-list-item:hover {
  transform: translateX(-10px);
  /* Move left towards text */
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Removed incorrect .hero-visuals img rule that was forcing height 50% */

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: block;
    font-size: 1.8rem;
    color: var(--color-primary);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }
}