* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

html {
  scroll-behavior: smooth;
}
/* NAVBAR */
nav {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: black;
  color: white;

  position: sticky;
  top: 0;
  z-index: 1000;
}

span {
  color: orange;
}
ul{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
}

li {
  list-style: none;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: orange;
}

h1, h2, h3 {
  
  font-size: 30px;
}

section {
  padding: 60px 20px;
}

/* HERO */
.hero {
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* BUTTON */
button {
  width: 200px;
  border: 0;
  line-height: 2.5;
  padding: 0 20px;
  font-size: 1rem;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 1px black;
  border-radius: 10px;
  background-color: orange;
  margin-top: 20px;
  background-image: linear-gradient(
    to top left,
    rgb(0 0 0 / 0.2),
    rgb(0 0 0 / 0.2) 30%,
    transparent
  );
  box-shadow:
    inset 2px 2px 3px rgb(255 255 255 / 0.6),
    inset -2px -2px 3px rgb(0 0 0 / 0.6);
}

/* MENU */
.menu {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #eee;
  margin: 10px;
  padding: 10px;
}

/* 🔥 GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    
}

.gallery img {
    width: 400px;
    height: 200px;
    object-fit: cover;
}
#gallery h2 {
    text-align: center;
    margin-bottom: 10px;
}


/* CONTACT SECTION */
.contact {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* INPUTS + TEXTAREA */
.contact input,
.contact textarea {
    width: 60%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/* LEFT MARGIN (tumhari requirement) */
.about {
    margin-top: 30px;
    text-align: center;
}

/* BUTTON IMPROVE */
/* .contact button {
    margin-top: 15px;
    margin-left: 20px;
    padding: 12px 25px;
    background: orange;
    border-radius: 5px;
    transition: 0.3s;
} */

/* HOVER EFFECT 🔥 */
.contact button:hover, .hero button:hover {
    background: darkorange;
    transform: scale(1.05);
}
/* FOCUS EFFECT */
.contact input:focus,
.contact textarea:focus {
    border-color: orange;
    color: green;
}
/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* NAVBAR */
    nav {
      display: flex;
      justify-content: space-between;
      padding: 15px;
      background: black;
      color: white;
  
      position: sticky;
      top: 0;
      z-index: 1000;
  }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    /* HERO */
    .hero h1 {
        font-size: 24px;
        text-align: center;
    }

    /* MENU */
    .menu {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card {
        width: 90%;
    }

    /* CONTACT */
    .contact input,
    .contact textarea {
        width: 90%;
        margin-left: 0; /* mobile me remove */
    }

    .contact button {
        margin-left: 0;
        width: 90%;
    }
}
/* 📲 TABLET */
@media (max-width: 1024px) {

    .card {
        width: 70%;
    }

    .contact input,
    .contact textarea {
        width: 80%;
    }
}

.menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.card {
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

/* hover effect 🔥 */
.card:hover {
  transform: scale(1.05);
}
 
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
    
}