@font-face {
  font-family: "Wasted-Vindey";
  src: url("Wasted-Vindey.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Add font-display to ensure text is visible while loading */
}

body {
  margin: 0;
font-family: "Wasted-Vindey", cursive; /* Revert body font to Wasted-Vindey */
  background: #2c3e50; /* Dark blue-grey background */
  color: #f5e6cc; /* Soft cream/beige text */
  text-align: center;
  line-height: 1.6;
}

/* General styling */
section {
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  font-family: "Wasted-Vindey", cursive;
  color: #e0b8a7; /* Soft rose/peach for headings */
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4rem; /* Increased heading size */
  line-height: 1.2;
}

h2 {
  font-size: 3rem; /* Increased heading size */
  font-weight: 200;;
}

.img-main {
    /* height: auto; */
    width: 25vw;
    margin-top: 5%;
    border: 6px solid white;
}

p, a, .button, .map-buttons button { /* Apply sans-serif to other non-heading elements */
  font-family: "Century Gothic", sans-serif;
  font-size: 1.4rem; /* Increased font size */
  margin-bottom: 1rem;
}

a {
  color: #e0b8a7; /* Soft rose/peach for links */
  text-decoration: none;
  border-bottom: 1px solid #e0b8a7; /* Soft rose/peach border for links */
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  color: #a07d7d;
  border-color: #a07d7d;
}

/* Welcome section */
.welcome {
  font-family: "Wasted-Vindey", cursive; /* Ensure welcome text uses Wasted-Vindey */
  font-size: 4.5rem; /* Increased welcome font size */
  font-weight: normal;
  opacity: 0;
  transform: translateY(-50px);
  animation: dropIn 1.5s ease forwards;
  margin: 2rem 1rem;
  color: #e0b8a7; /* Soft rose/peach for welcome text */
}

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  margin-top: 1.5rem;
  background: transparent; /* No background */
  border: 2px solid #e0b8a7; /* Soft rose/peach border */
  border-radius: 0; /* Rectangular */
  text-decoration: none;
  color: #f5e6cc; /* Soft cream/beige text */
  font-family: "Wasted-Vindey", cursive; /* Wasted-Vindey font */
  font-weight: normal;
  font-size: 1.4rem; /* Increased font size */
  letter-spacing: 0.5px;
  transition: color 0.3s ease; /* Transition for text color */
  box-shadow: none; /* Remove shadow */
  position: relative; /* For pseudo-element positioning */
  overflow: hidden; /* Hide overflow of pseudo-element */
  z-index: 1; /* Ensure text is above pseudo-element */
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d4af37; /* Gold fill color on hover */
  transform: scaleX(0); /* Start with no width */
  transform-origin: left; /* Expand from left */
  transition: transform 0.3s ease; /* Animation duration */
  z-index: -1; /* Place behind text */
}

.button:hover {
  color: #2c3e50; /* Dark background text on hover */
  transform: translateY(-2px);
}

.button:hover::before {
  transform: scaleX(1); /* Expand to full width on hover */
}

/* Map section */
.map {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border: 5px solid #e0b8a7; /* Soft rose/peach border */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
}

iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.map-buttons {
  margin: 1.5rem 0;
}

.map-buttons button {
  background: transparent; /* No background */
  border: 2px solid #e0b8a7; /* Soft rose/peach border */
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 0; /* Rectangular */
  font-family: "Wasted-Vindey", cursive; /* Wasted-Vindey font */
  font-size: 1.4rem; /* Increased font size */
  cursor: pointer;
  transition: color 0.3s ease; /* Transition for text color */
  color: #f5e6cc; /* Soft cream/beige text */
  font-weight: normal;
  box-shadow: none; /* Remove shadow */
  position: relative; /* For pseudo-element positioning */
  overflow: hidden; /* Hide overflow of pseudo-element */
  z-index: 1; /* Ensure text is above pseudo-element */
}

.map-buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d4af37; /* Gold fill color on hover */
  transform: scaleX(0); /* Start with no width */
  transform-origin: left; /* Expand from left */
  transition: transform 0.3s ease; /* Animation duration */
  z-index: -1; /* Place behind text */
}

.map-buttons button:hover {
  color: #2c3e50; /* Dark background text on hover */
  transform: translateY(-1px);
}

.map-buttons button:hover::before {
  transform: scaleX(1); /* Expand to full width on hover */
}

.map-buttons button.active {
  background: #d4af37; /* Gold background when active */
  border-color: #d4af37; /* Gold border when active */
  font-weight: normal;
  box-shadow: none;
  color: #2c3e50; /* Dark background text color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 3.2rem; /* Adjusted for larger base heading */
  }
  h2 {
    font-size: 2.4rem; /* Adjusted for larger base heading */
  }
  .welcome {
    font-size: 3.5rem; /* Adjusted for larger base welcome */
  }
  .button, .map-buttons button {
    padding: 0.7rem 1.3rem;
    font-size: 1.2rem; /* Adjusted for larger base font */
  }
}

@media (max-width: 1100px) {
  .img-main {
        /* height: auto; */
    width: 30vw;
    border: 6px solid white;
  }
    
}

@media (max-width: 616px) {
  h1 {
    font-size: 2.6rem; /* Adjusted for larger base heading */
  }
  h2 {
    font-size: 2rem; /* Adjusted for larger base heading */
  }
  .img-main {
        /* height: auto; */
    width: 60vw;
    border: 3px solid white;
  }
  .welcome {
    font-size: 3rem; /* Adjusted for larger base welcome */
  }
  section {
    padding: 2rem 1rem;
  }
  .map-buttons button {
    margin: 0.3rem 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
