/* ---------- Footer Styling ---------- */
.site-footer {
  background: linear-gradient(to right, #f08b2c, #8b1d1d);
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}

.footer-column p, 
.footer-column a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  color: #fff;
  text-decoration: none !important;
}

/* Platform-specific hover colors */
.social-links a.facebook:hover {
  background: #3b5998;
}
.social-links a.instagram:hover {
  background: #e4405f;
}
.social-links a.twitter:hover {
  background: #1da1f2;
}
.social-links a.linkedin:hover {
  background: #0077b5;
}

/* Map container */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.85;
}

/* Booking.com */
.book {
  text-align: center;
}
.book p {
margin-top: -100px !important;
display: none !important;
}

.book img {
  width: 200px; /* fixed size instead of % for consistency */
  height: 150px !important;
  display: block;
  margin: 0 auto 8px auto; /* centers and adds space above text */
  margin-top: 10px !important;
}

/* Newsletter */
/* Newsletter */
.newsletter {
  margin-top: 18px;
  text-align: center;
}

.newsletter h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
}

/* Form layout for large screens */
.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  border-radius: 50px 0 0 50px;
}

.newsletter-form input::placeholder {
  color: #666;
  opacity: 0.8;
}

.newsletter-form button {
  background: #fff;
  color: #8b1d1d;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 50px 50px 0;
}

.newsletter-form button:hover {
  background: #f0f0f0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border-radius: 0;
  }

  .newsletter-form input {
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
  }

  .newsletter-form input::placeholder {
    color: #ddd;
  }

  .newsletter-form button {
    width: 100%;
    border-radius: 8px;
    background: #fff;
    color: #8b1d1d;
  }
}

