/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(-45deg, #fdfdfd, #d0f0f6, #fff6e0, #f0f0f0);
  background-size: 400% 400%;
  animation: bgFlow 15s ease infinite;
  color: #222;
  line-height: 1.8;
}

/* Header Navigation */
.header-small {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: #ffd700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e6b400;
}

/* About Page Layout */
.about-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  animation: fadeInUp 1s ease forwards;
}

section {
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Introduction Image */
.about-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}
.about-img:hover {
  transform: scale(1.04) rotate(-1deg);
}

/* Details Section */
ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}
ul li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

/* Google Maps */
iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin-top: 1rem;
}

/* Contact Info */
.contact a {
  color: #e6b400;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.contact a:hover {
  color: #b18500;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #fafafa;
  color: #777;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 5px rgba(0,0,0,0.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .about-img {
    max-height: 300px;
  }

  .about-container {
    padding: 1.5rem;
  }

  ul {
    padding-left
  }
}
