* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #ffd700;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

nav {
  background: #111;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ffd700;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a:hover {
  color: white;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    display: none;
    text-align: center;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, #111, #000);
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn {
  background: #ffd700;
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #1a1a1a;
  border: 1px solid #ffd70040;
  border-radius: 10px;
  width: 300px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #ffd70030;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  background: #111;
  color: #ffd700;
  border: 1px solid #ffd70040;
  border-radius: 5px;
}

input::placeholder, textarea::placeholder {
  color: #ffd70080;
}

button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: white;
}

footer {
  background: #111;
  text-align: center;
  padding: 2rem;
  color: #ffd700;
}

.back-to-top {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.about-section {
  width: 100%;
  background-color: #111;
  color: #ffd700;
  padding: 80px 20px;
  text-align: center;
}

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 20px;
  background-color: #222;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.2); /* soft yellow glow */
}

.about-wrapper h3 {
  margin-bottom: 15px;
  color: #ffd700;
  font-size: 1.6rem;
}


/* Animations */
.animate-up, .animate-fade, .animate-zoom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-zoom {
  transform: scale(0.95);
}

.visible {
  opacity: 1;
  transform: none;
}
