html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  scroll-behavior: smooth;
}

body {
  background: url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll !important;
    background-position: center top;
    background-size: cover;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: top;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 60vh;
    background-size: cover;
    background-position: top;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    height: 60vh;
  }
}
  
main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #f4d03f;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}


nav ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

nav ul li a.active,
nav ul li a:hover {
  color: #f4d03f;
  text-decoration: underline;
}
nav a.active {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .tagline {
  letter-spacing: 3px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  margin-top: 15px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeIn 2s ease-in-out;
}

.content {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 30px;
  margin: 20px auto;
  width: 80%;
  border-radius: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.contact-form {
  display: block;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #f4d03f;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #fff;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  margin-top: 50px;
}
.photo-banner {
  text-align: center;
  margin: 30px auto;
  width: 90%;
}

.photo-banner img {
  width: 80%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.photo-banner img:hover {
  transform: scale(1.03);
}
.small-map {
  width: 350px;
  margin: 20px auto;
  text-align: center;
}

.small-map h2 {
  font-size: 1.5em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);

}
.accommodation {
  width: 90%;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.accommodation h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffcc00;
}

.accommodation p {
  line-height: 1.8;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.accommodation-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.accommodation-images img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

footer h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffcc00;
}

footer .social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}
img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  header h1 {
    font-size: 1.8em;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

section {
  animation: fadeIn 1.5s ease-in;
}

.contact-map {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}




