/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'IM Fell English SC', serif;
  line-height: 1.6;
  color: white;
  background-color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Texture Background */
body {
  background-image: url('images/crosshatch.jpg');
  background-size: 40px 40px;
  background-repeat: repeat;
}

/* ===== HERO HEADER STYLES ===== */
.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

/* ===== FOLLOW US! SECTION STYLES ===== */
.follow-us {
  text-align: center;
  padding: 1rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.follow-us h2 {
  font-size: 2.5rem;
  margin: 0 0 2rem;
  color: white;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

/* ===== BOOKING SECTION STYLES ===== */
.booking-section {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

.booking-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.booking-link:hover {
  color: #cccccc;
  text-decoration: underline;
}

/* ===== FOOTER STYLES ===== */
.footer {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.footer-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  background: transparent;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .follow-us h2 {
    font-size: 2rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon-img {
    width: 35px;
    height: 35px;
  }

  .booking-section {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .follow-us h2 {
    font-size: 1.8rem;
  }

  .social-icons {
    gap: 1.2rem;
  }

  .social-icon-img {
    width: 30px;
    height: 30px;
  }
}
