.html {
  scroll-behavior: smooth;
}

/* Menu Bar Styling */
.navbar {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin: 20px;
      
    }

    .grid-container img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .grid-container img:hover {
      transform: scale(1.05);
    }

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f39c12;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.logo {
  width: 150px;
  margin-bottom: 20px;
}
.hero {
  background: linear-gradient(to right, #121212, #292929);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  background-color: #e83e8c;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
.features {
  background: #f5f5f5;
  padding: 60px 0;
}
.features h2 {
  text-align: center;
  margin-bottom: 40px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.feature {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.instagram iframe {
  width: 100%;
  border: none;
  height: 400px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.instagram {
    
  text-align: center;
  margin-bottom: 40px;
    
}
.contact {
  background: #fafafa;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
footer {
  background: #121212;
  color: white;
  text-align: center;
  padding: 10px 0;
}
