@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap);
/* GLOBAL RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
div,
section {
  color: #fff;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(assets/background2.d2a0c02f86d000db97e8.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  padding: 2rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
}

.hero h3 {
  color: #ccc;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 400;
  margin-top: 1rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-in-out 0.6s forwards;
  opacity: 0;
}

/* NAVIGATION */
nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(6px);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-in-out;
  border-radius: 0 0 12px 12px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover,
a:focus {
  color: #ffd166;
  outline: 2px solid #ffd166;
  outline-offset: 4px;
}

/* MAIN CONTENT */
main {
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  max-width: 900px;
  margin: auto;
  animation: fadeIn 1s ease-in;
}

section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

section:nth-child(even) {
  background-color: #171717;
  padding: 2rem;
  border-radius: 10px;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-left: 4px solid #ffd166;
  padding-left: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

/* IFAME */
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 550px;
  margin: 0 auto;
  border: none;
}

/* DIVIDER */
.styled-hr {
  height: 2px;
  background-color: #333;
  width: 60%;
  margin: 2rem auto;
}

/* FOOTER */
footer {
  background: #000;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 4rem;
  animation: fadeIn 1s ease-in;
}

footer p {
  font-size: 0.95rem;
}

/* CARDS (OPTIONAL PROJECT STYLING) */
.card {
  background-color: #1f1f1f;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 209, 102, 0.1);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .hero {
    background-image: url(assets/background1.21bba75d78e8fbf5aaeb.webp);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  iframe {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 220px;
    margin: 0 auto;
  }

  main {
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero nav {
    display: none;
  }
}

