/* ========================
   Base Styles
   ======================== */

body {
  margin: 0;
  font-family: "Montserrat", "Montserrat";
  font-size: clamp(1rem, 1.2vw + 0.5rem, 20px);
  background: #f9f9f9 url("../images/whitewaves.jpg") repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600; /* or 700 if you want extra bold headers */
  letter-spacing: 1px;
}

.container {
  max-width: 1200px;
  margin: 1rem;
}

header {
  width: 100%;
  background: #fff url("../images/whitewaves.jpg") repeat;
  background-size: auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw + 1rem, 2rem);
}
/* ========================
   Buttons & Book Now
   ======================== */

.nav a.book-now,
a.book-now,
input[type="submit"] {
  font-family: "Montserrat", "Montserrat";
  font-weight: 600; /* or 700 for bolder look */
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-family: "Montserrat", "Montserrat";
  font-weight: bold;
  font-size: clamp(1rem, 0.8vw + 0.8rem, 1.2rem);
  transition: all 0.3s ease;
}

nav a:hover {
  color: #6b8e23;
}

nav a.book-now {
  background: #6f7c12;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

nav a.book-now:hover {
  background: #6b8e23;
}

/* ========================
   Hero Section
   ======================== */

.hero {
  position: relative;
  width: 100%;
  height: 100px; /* Shallower than 16/4 */
  max-height: 400px; /* Cap it on desktop */
  min-height: 250px; /* Prevents cutting off on mobile */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.hero-text {
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 1rem 2rem;
}

.hero-text h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

/* ========================
   Categories Section
   ======================== */

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
}

.category {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.category img {
  width: 100%;
  border-radius: 8px;
}

.category h3 {
  margin-top: 0.5rem;
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.6rem);
}

.category a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.category a:hover h3 {
  color: #6b8e23;
  opacity: 0.8;
}

/* ========================
   Inner Hero
   ======================== */

.inner-hero {
  background: #7e846b;
  text-align: center;
  padding: 4rem 2rem 3rem;
}

.inner-hero h2 {
  font-family: "Montserrat", "Montserrat";
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin: 0;
}

/* ========================
   Service List (Boxes)
   ======================== */

.service-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.service {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service h3 {
  font-family: "Montserrat", "Montserrat";
  font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2rem);
  margin: 0 0 0.5rem 0;
}

.service p {
  line-height: 1.6;
  margin: 0;
}

/* ========================
   Portfolio Gallery
   ======================== */

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.portfolio-item img:hover {
  transform: scale(1.03);
}

/* ========================
   Privacy & Contact
   ======================== */

.privacy-policy,
.contact-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-text p,
.contact-box p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
  font-family: "Montserrat", "Montserrat";
  margin: 1rem 0 0.5rem 0;
}

.contact-box a {
  color: inherit;
  text-decoration: underline;
}

/* ========================
   Footer
   ======================== */

footer {
  text-align: center;
  padding: 2rem;
  font-size: clamp(0.9rem, 0.7vw + 0.6rem, 1rem);
}

footer a {
  color: inherit;
  text-decoration: underline;
}

/* ========================
   Responsive
   ======================== */

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .logo h1 {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  nav {
    margin-top: 1rem;
    justify-content: center;
    gap: 0.5rem;
  }

  nav a {
    margin: 0.25rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  nav a.book-now {
    padding: 0.4rem 0.8rem;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .hero {
    height: 250px;
  }

  .categories {
    flex-direction: column;
    align-items: center;
  }

  .category {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0.5rem 0;
  }

  .logo h1 {
    font-size: clamp(0.9rem, 5vw, 1.2rem);
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    margin: 0.2rem;
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }

  nav a.book-now {
    padding: 0.5rem 1rem;
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }

  .header-content {
    padding: 0.25rem 0;
  }

  .logo h1 {
    font-size: clamp(0.8rem, 6vw, 1rem);
  }

  nav a {
    margin: 0.1rem;
    font-size: clamp(0.7rem, 5vw, 0.8rem);
  }

  nav a.book-now {
    padding: 0.4rem 0.8rem;
    font-size: clamp(0.7rem, 5vw, 0.8rem);
  }
}
