@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&display=swap');

body {
  font-family: 'Kalam', cursive;
  margin: 0;
  scroll-behavior: smooth;
  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('bg.jpg') center/cover no-repeat fixed;
  color: #f5f5f5;
  overflow-x: hidden;
  
}
.logo3{
  width: 350px;
    height: 300px;
    border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}


/* ===================== */
/* NAVBAR (Darker Glassy Black) */
/* ===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;

  background: rgba(0, 0, 0, 0.65); /* darker translucent black */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  position: absolute; /* stays at top but scrolls away */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}


.navbar .logo {
  color: #ffe156;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.navbar a {
  color: #f5f5f5;
  text-decoration: none;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #ffe156;
}

/* ===================== */
/* HERO SECTION */
/* ===================== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('1.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 700px;
  animation: float 4s ease-in-out infinite;
}

.hero h1 {
  font-size: 3.5rem;
  color: #ffe156;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #f3f3f3;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===================== */
/* BUTTON */
/* ===================== */
.btn {
  display: inline-block;
  background: linear-gradient(to right, #ff006e, #ffbe0b);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 190, 11, 0.6);
}

/* ===================== */
/* SECTIONS */
/* ===================== */
section {
  padding: 100px 10%;
}

.about, .gallery, .location, .reviews {
  text-align: center;
}

.about h2,
.gallery h2,
.location h2,
.reviews h2 {
  font-size: 2.2rem;
  color: #ffe156;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
  line-height: 1.6;
}


/* ===================== */
/* SOCIAL MEDIA SECTION */
/* ===================== */
.socials {
  text-align: center;
  padding: 80px 10%;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socials h2 {
  color: #ffe156;
  font-size: 2rem;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.social-links img {
  width: 55px;
  height: 55px;
  filter: invert(100%) brightness(100%) drop-shadow(0 0 5px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: invert(80%) sepia(80%) saturate(300%) hue-rotate(20deg) brightness(110%);
}


/* ===================== */
/* GALLERY */
/* ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: -30px;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 250px;              /* ✅ keeps all images same height */
  object-fit: cover;          /* ✅ crops evenly to fill box */
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}


/* ===================== */
/* MAP / LOCATION */
/* ===================== */
.location p {
  color: #ccc;
  margin-bottom: 20px;
}

iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 15px;
}

/* ===================== */
/* REVIEWS */
/* ===================== */
.reviews {
  background: linear-gradient(135deg, #111, #1e1e1e);
  padding: 120px 10%;
}

.reviews p {
  color: #ccc;
  font-size: 1rem;
}

/* ===================== */
/* FOOTER */
/* ===================== */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer span {
  color: #ffe156;
}

/* ===================== */
/* BACK TO TOP BUTTON */
/* ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 22px;
  background: #ff006e;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #ffbe0b;
  color: #000;
}

/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 20px;
  }

  .navbar .logo {
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 80px 8%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 10px;
  }

  .navbar .logo {
    font-size: 1.1rem;
  }

  .navbar a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
