body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 70px;
}
.site-logo {
  height: 75px;
  width: auto;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
}
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;

}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(249,249,249,0), rgba(249,249,249,1));
    z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 20px;
  margin: 0 0 24px;
}

.hero-content button {
  padding: 12px 24px;
  border: none;
  background: #4a90e2;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;

  transition: all 0.3s ease;
}
.hero-content button:hover {
  background: #357abd;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}
.about {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.featured {
  padding: 80px 20px;
  text-align: center;
}

.featured h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: #555;
  font-size: 16px;
}

.instagram:hover {
  background: #c72c60;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.email:hover {
  background: #3a78c2;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}
.menu-section {
  padding: 50px 20px 60px;
  text-align: center;
  background: #f7f7f7;
}

.menu-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.menu-image {
  display: block;
  width: 90%;
  max-width: 650px;
  margin: 0 auto 25px auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.menu-section button {
  background: #2f80ed;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-section button:hover {
  transform: translateY(-3px);
  background: #1f66c2;
}
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-links a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.instagram {
  background: #E1306C;
  color: white;
}

.instagram:hover {
  background: #c72c60;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.email {
  background: #4A90E2;
  color: white;
}

.email:hover {
  background: #3a78c2;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.phone {
  background: #111;
  color: white;
}

.phone:hover {
  background: #333;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
      padding: 20px 40px;
    display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 40px;
}

.navbar h2 {
  color: white;
  font-size: 22px;
letter-spacing: 0.5px;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover {
  color: #0099cc;  
  transform: translateY(-2px);
}
body {
  margin: 0;
  padding-top: 70px;
}

html {
  scroll-behavior: smooth;
}


.hidden-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.show-section {
  opacity: 1;
  transform: translateY(0);
}

.gallery {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.gallery-grid img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}