/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f6f2;
  color: #2e2e2e;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

/* ===== GLOBAL ===== */
html,
body {
  overflow-x: hidden;
}

section {
  padding: 110px 12%;
  scroll-margin-top: 80px;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #3f5c45;
}

img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #b46a4d;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cta-btn:hover {
  background-color: #8f4e35;
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR BASE ===== */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.navbar.scrolled .logo {
  color: #3f5c45;
}

/* LINKS */

.navbar-links {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  transition: 0.4s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.navbar-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: white;
  transition: 0.3s;
  position: relative;
}

.navbar.scrolled .navbar-links a {
  color: #2e2e2e;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #b46a4d;
  transition: 0.3s;
}

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

/* BOTÃO RESERVAR */

.nav-cta {
  padding: 8px 18px;
  border: 1px solid white;
  border-radius: 30px;
}

.navbar.scrolled .nav-cta {
  border: 1px solid #3f5c45;
}

/* ===== HAMBURGER ===== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.navbar.scrolled .hamburger span {
  background: #2e2e2e;
}
/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* unidade moderna que resolve mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./public/assets/outside-2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45)
  );
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: #f8f6f2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  font-weight: 300;
  color: #f8f6f2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #b46a4d;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.secondary-btn {
  background-color: transparent;
  border: 1px solid white;
}

.secondary-btn:hover {
  background-color: white;
  color: #3f5c45;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: 8px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 22px;
  }
}

/* ================== ABOUT ================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about p {
  font-size: 1.05rem;
  color: #555;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b46a4d;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-highlights div {
  flex: 1;
  padding: 20px;
  background: #f8f6f2;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.about-highlights div:hover {
  transform: translateY(-5px);
}

.about-highlights h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
  color: #3f5c45;
  font-size: 1.2rem;
}

/* ================== Amenities ================== */
.amenities {
  background: #ffffff;
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 70px;
}

.amenity {
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.amenity:hover {
  background: #f8f6f2;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.amenity h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #3f5c45;
}

.amenity p {
  font-size: 0.95rem;
  color: #555;
}

.amenity i {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: #3f5c45;
  margin-bottom: 20px;
}

/* ================== GALLERY ================== */
.gallery {
  background-color: #f1eee8;
}

.gallery h2 {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 25px;
  margin-top: 60px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ================== ACTIVITIES ================== */
.activities {
  text-align: center;
  background: #f1eee8;
}

.section-tag.center {
  display: block;
  text-align: center;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.activity-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-8px);
}

.activity-card img {
  height: 220px;
}

.activity-content {
  padding: 25px;
  text-align: left;
}

.activity-content h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #3f5c45;
}

.activity-content p {
  font-size: 0.95rem;
  color: #555;
}

/* ================== CONTACT ================== */
.contact {
  text-align: center;
  background: linear-gradient(135deg, #3f5c45, #2d4031);
  color: white;
  border-radius: 30px 30px 0 0;
}

.contact h2 {
  color: white;
}

.contact p {
  margin-bottom: 35px;
  font-weight: 300;
}

/* ================== FOOTER ================== */
.footer {
  text-align: center;
  padding: 30px;
  background-color: #1f2c22;
  color: #ccc;
  font-size: 0.9rem;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-highlights {
    flex-direction: column;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity {
    flex-direction: column;
    text-align: center;
  }

  .activity img {
    width: 100%;
  }

  .activities {
    text-align: center;
    background: #f1eee8;
  }

  .section-tag.center {
    display: block;
    text-align: center;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
  }

  .activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    cursor: pointer;
  }

  .activity-card:hover {
    transform: translateY(-8px);
  }

  .activity-card img {
    height: 220px;
  }

  .activity-content {
    padding: 25px;
    text-align: left;
  }

  .activity-content h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
    color: #3f5c45;
  }

  .activity-content p {
    font-size: 0.95rem;
    color: #555;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-links a {
    color: #2e2e2e;
    font-size: 1.1rem;
  }

  .navbar-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  /* ===== GLOBAL ===== */

  section {
    padding: 70px 6%;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* ===== HERO ===== */

  .hero {
    height: 85vh;
    padding: 0 20px;
  }

  .hero-overlay {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* ===== ABOUT ===== */

  .about {
    gap: 40px;
  }

  .about-highlights {
    gap: 20px;
  }

  .about-highlights div {
    padding: 18px;
  }

  /* ===== AMENITIES ===== */

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .amenity {
    padding: 30px 20px;
  }

  .amenity i {
    width: 32px;
    height: 32px;
  }

  /* ===== GALLERY ===== */

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  /* ===== ACTIVITIES ===== */

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .activity-card img {
    height: 200px;
  }
}
