/* ==== BASIC RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background-color: #050505;
  color: #f5f5f5;
}

/* ==== REUSABLE CLASSES ==== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
}

.btn {
  border: none;
  outline: none;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #ff3b3b;
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.7);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ff3b3b;
  color: #ff3b3b;
}

.btn-outline:hover {
  background: #ff3b3b;
  color: #fff;
}

/* ==== HEADER / NAVBAR ==== */
.main-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #222;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 22px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
}

.nav-links a:hover {
  color: #ff3b3b;
}

/* ==== HERO / SLIDER ==== */
.hero {
  height: 100vh;
  position: relative;
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 24px;
  margin-top: 16px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background: #000; /* fallback */
}

/* slider images */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* dim aesthetic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.85)
    );
}

/* hero text */
.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
  animation: fadeUp 1.2s ease-out;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #e5e5e5;
  margin-bottom: 20px;
}

.hero-small-text {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #c0c0c0;
}

/* scroll-down */
.scroll-down {
  margin-top: 35px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: floaty 2s infinite ease-in-out;
}

.scroll-down span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b0b0b0;
}

.mouse {
  width: 28px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #b0b0b0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: #ff3b3b;
  animation: wheel 1.3s infinite ease-in-out;
}

/* ==== ABOUT SECTION ==== */
.about {
  background: #050505;
  padding: 60px 0 80px;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.about-subtitle {
  font-size: 1.1rem;
  margin: 20px 0 8px;
  color: #f5f5f5;
}

.about p {
  margin-bottom: 10px;
  color: #d0d0d0;
  font-size: 0.96rem;
}

.about ul {
  margin: 10px 0 20px 18px;
  font-size: 0.95rem;
  color: #d8d8d8;
}

.about li {
  margin-bottom: 6px;
}

.about-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #a8a8a8;
}

/* about cards */
.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: #0b0b0b;
  border-radius: 16px;
  padding: 14px 14px 18px;
  border: 1px solid #1b1b1b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #ff3b3b;
  box-shadow: 0 18px 40px rgba(255, 59, 59, 0.18);
}

.feature-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: #cccccc;
}

/* ==== SOCIAL SECTION ==== */
.social-section {
  background: radial-gradient(circle at top, #111, #050505);
  padding: 50px 0 70px;
  border-top: 1px solid #151515;
}

.social-section h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.social-intro {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.social-card {
  background: #080808;
  border-radius: 16px;
  padding: 18px 16px 20px;
  border: 1px solid #191919;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-card .social-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.social-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.social-card p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.social-note {
  font-size: 0.78rem;
  color: #aaaaaa;
}

.social-card.insta:hover {
  border-color: #ff3b6e;
}
.social-card.fb:hover {
  border-color: #3b82ff;
}
.social-card.tw:hover {
  border-color: #38bdf8;
}

/* reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==== FOOTER ==== */
.main-footer {
  border-top: 1px solid #222;
  padding: 16px 24px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #050505;
  font-size: 0.8rem;
  color: #a5a5a5;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #555;
  padding: 4px 8px;
  font-size: 0.7rem;
  color: #f5f5f5;
}

.social-icons a:hover {
  border-color: #ff3b3b;
  color: #ff3b3b;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .main-header {
    padding: 0 16px;
  }

  .hero {
    margin: 0 10px;
    margin-top: 10px;
    border-radius: 24px;
  }

  .nav-links a {
    display: none; /* keep it very simple on mobile */
  }

  .feature-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
}
