/* 🔹 Basic Styling for the Page */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: black;
  overflow-x: hidden;
}

/* 🔹 Top Bar Section */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #b1d0f3;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* 🔹 Social Media Icons */
.social-media {
  display: flex;
  gap: 15px;
}

.social-media a {
  text-decoration: none;
}

.social-media img {
  width: 30px;
  height: 30px;
}

/* 🔹 Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: black;
  text-align: center;
  flex-grow: 1;
  font-family: 'Kaushan Script', cursive;
}

/* 🔹 Navigation */
.navigation {
  display: flex;
  justify-content: flex-end;
}

.navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: inline;
}

.navigation a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* 🔹 Responsive Top Bar for Mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
  }

  .social-media {
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo {
    text-align: center;
    font-size: 24px;
  }

  .navigation {
    justify-content: center;
    width: 100%;
  }

  .navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* 🔹 Social Media Icons */
.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  text-decoration: none;
}

.social-media img {
  width: 30px;
  height: 30px;
}

/* 🔹 Logo */
.logo {
  font-size: 30px;
  font-weight: bold;
  color: black;
  text-align: center;
  flex: 1;
  font-family: 'Kaushan Script', cursive;
}

/* 🔹 Navigation Bar */
.navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navigation li {
  display: inline;
}

.navigation a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* 🔹 Cocktail Making Class Section with Blurred Background */
.cocktail-class-page {
  text-align: center;
  padding: 40px 20px;
  background: url('cocktailclass21.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
  color: white;
}

/* 🔹 Dark Overlay with Blur Effect */
.cocktail-class-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1;
}

/* 🔹 Ensuring Content is Above the Overlay */
.cocktail-class-page .content,
.cocktail-class-page .banner h1 {
  position: relative;
  z-index: 2;
}

/* 🔹 Title Styling */
.banner h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 50px;
  color: white;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* 🔹 Content Box for Readability */
.content {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 10px;
}

/* 🔹 Text Adjustments */
.content h2,
.content p,
.content ul {
  color: white;
}

/* 🔹 Contact Button */
.contact-btn-container {
  margin-top: 20px;
  text-align: center;
}

.contact-btn {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  background-color: #207972;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background-color: #165c4a;
}

/* 🔹 Full Page Background Image */
.full-page-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.full-page-image img {
  width: 90%;
  max-width: 1200px;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
}

/* 🔹 Section with 3 Review Images */
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* 🔹 Individual Image Containers */
.image-container {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

/* 🔹 Review Images */
.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

/* 🔹 Background Color Behind Images & Map */
.image-map-section {
  background-color: #b1d0f3;
  padding: 0; /* 🔥 Removed extra padding */
  margin: 0; /* 🔥 Removed extra margin */
}

/* 🔹 Section with 4 Landscape Images Above the Map */
.landscape-image-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0; /* 🔥 Ensures spacing only inside */
}

/* 🔹 Uniform Size for Landscape Images */
.landscape-image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

/* 🔹 Interactive Map Section */
.map-section {
  text-align: center;
  margin: 0; /* 🔥 Removed gap */
  padding: 0; /* 🔥 Removed gap */
  background-color: #b1d0f3;
}

/* 🔹 Map Size */
.map-section iframe {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: 15px;
}

/* 🔹 Footer Section */
footer {
  text-align: center;
  padding: 10px 0;
  background-color: #b1d0f3;
  color: black;
  font-weight: 600;
  font-size: 16px;
  margin-top: 0; /* 🔥 Removed gap */
}

/* 🔹 Mobile Responsiveness */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 40px;
    margin-top: 0px;
  }

  .cocktail-class-page {
    padding: 0px 15px;
    background-size: cover;
  }

  .cocktail-class-page .content {
    padding: 15px;
  }

  .content h2 {
    font-size: 30px;
  }

  .content p {
    font-size: 16px;
  }

  .contact-btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 80%;
  }

  .image-section {
    flex-direction: column;
    align-items: center;
  }

  .landscape-image-section {
    grid-template-columns: 1fr;
  }

  .landscape-image-container img {
    height: 200px;
  }

  .map-section iframe {
    height: 250px;
  }

  .image-map-section {
    padding: 0;
  }
}
