/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* VARIABLES */
:root {
  --primary: #22c55e;
  --secondary: #16a34a;
  --dark: #0f172a;
  --light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.1);
  --blur: blur(10px);
}

/* BODY */
body {
  background: linear-gradient(135deg, #0f172a, #022c22);
  color: var(--light);
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: var(--blur);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  gap: 40px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.hero-img img {
  width: 350px;
  animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CARDS */
.info {
  text-align: center;
  margin-top: 100px;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.card {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  background: var(--glass);
  backdrop-filter: var(--blur);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ABOUT */
.about {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
}

.about img {
  width: 250px;
}

/* LOCATION */
.location {
  text-align: center;
  margin-top: 100px;
}

.location img {
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

/* FOOTER */
.footer {
  margin-top: 100px;
  background: #020617;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  color: var(--primary);
}

.copy {
  text-align: center;
  margin-top: 20px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .cards {
    flex-direction: column;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .nav-menu {
    display: none;
  }
}