* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #333333;
  overflow-x: hidden;
  padding-top: 80px;
}

/* BASKETBALL BACKGROUND */
.basketball-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.basketball-bg::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  animation: bounce 10s infinite linear;
  opacity: 0.1;
}

@keyframes bounce {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar a {
  color: #333333;
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar a:hover {
  color: #ff6b35;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #ff6b35;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 150px 20px;
  background: linear-gradient(135deg, #fff5f0, #ffe5d9);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  animation: fadeInUp 1.5s ease-out;
  color: #333333;
}

.hero-icon {
  position: relative;
  z-index: 1;
  font-size: 80px;
  color: #ff6b35;
  margin-bottom: 30px;
  animation: bounceIn 0.8s ease-out;
}

.hero-icon i {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.5s forwards;
  color: #666666;
}

.hero span {
  font-weight: 600;
  color: #ff6b35;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* SLOGAN */
.slogan {
  text-align: center;
  padding: 100px 20px;
  background: #ffffff;
}

.slogan h2 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 400;
  animation: fadeIn 2s ease-out;
  color: #333333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* SECTIONS */
.section {
  padding: 100px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
}

.section:nth-child(odd) {
  background: #f9f9f9;
}

.section .text {
  max-width: 500px;
  flex: 1;
}

.section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ff6b35;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333333;
}

/* LINKS */
.link {
  display: inline-block;
  margin-top: 20px;
  color: #ff6b35;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: 2px solid #ff6b35;
  border-radius: 25px;
  background: transparent;
}

.link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* ABOUT */
.about {
  text-align: center;
  padding: 120px 20px;
  background: #ffffff;
}

.about-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #ff6b35, #ff8e72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
}

.about p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #666666;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 100px 20px;
  background: #fff5f0;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff6b35;
}

.contact p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333333;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #ff6b35;
  border-radius: 10px;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 10px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #ff6b35;
  color: #ffffff;
  font-size: 14px;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 24px;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #333333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar nav {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .navbar a {
    margin-left: 0;
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    margin-top: 15px;
  }

  .slogan {
    padding: 60px 20px;
  }

  .slogan h2 {
    font-size: 24px;
  }

  .section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    min-height: auto;
  }

  .section .text {
    max-width: 100%;
  }

  .section h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section p {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .link {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .about {
    padding: 80px 20px;
  }

  .about h2 {
    font-size: 24px;
  }

  .about p {
    font-size: 16px;
  }

  .about-avatar {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 16px;
  }

  .contact-form {
    max-width: 100%;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .footer {
    padding: 20px;
  }

  .social-links a {
    font-size: 20px;
    margin: 0 10px;
  }
}
