/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

/* General Section Styling */
.section {
  padding: 100px 0;
  background-color: rgba(245, 245, 245, 0.8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  background-color: #f5f5f5;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.divider {
  height: 2px;
  width: 60px;
  background-color: #000000;
  margin: 0 auto;
}

/* Contact Section Specific Styles */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.contact-info,
.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #000000;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555555;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #555555;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: #000000;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #555555;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
}

.booking-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid #000000;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.booking-link:hover {
  background-color: #000000;
  color: #ffffff;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .contact-map {
    min-width: unset;
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }




  .social-links {
    text-align: center;
  }

  .social-links a {
    margin: 0 10px; /* Adjust spacing for centered links */
  }
}

@media screen and (max-width: 500px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}

body {
  background-image: url("/fullpagepic.jpg"); /* Replace 'your-image-url.jpg' with the actual URL or path to your image */
  background-size: cover; /* This will cover the entire background */
  background-repeat: no-repeat; /* This prevents the image from repeating */
  background-attachment: fixed; /* This keeps the background image in place when scrolling */
  /* You can keep your existing body styles as well */
  color: #333333;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

/* Header */
.page-header {
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-top: 10vh;
  text-align: center;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.8;
}
