* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  direction: rtl;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #000;
  color: #fff;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 24px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.hero-header { position:relative; z-index:2; display:flex; flex-direction:row; justify-content:space-between; align-items:flex-start; padding-top:0; }

/* Navigation */
.main-nav { display:flex; gap:28px; margin-top:-14px; }

.main-nav a { text-decoration:none; color:#f1d48a; font-size:18px; font-weight:700; padding:4px 0; transform:scale(1); transform-origin:center; transition:transform .2s ease, opacity .25s ease; }

.main-nav a:hover { transform:scale(1.05); opacity:0.95; }

/* Logo */
.logo { display:flex; align-items:center; gap:12px; }

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffeab0, #b80000);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

/* Layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr;
  align-items: center;
  margin-top: 40px;
}

/* Hero text */
.hero-text h1 {
  font-size: 40px;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-line {
  display: block;
}

.brand-red {
  display: block;
  color: #b80000;
}

/* Panel shape */
.hero-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel-img {
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.9));
  transform: perspective(900px) rotateY(-12deg) rotateX(8deg);
  transform-origin: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}


/* Brand text (HORAY) */
.hero-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-brand h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #a50000;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default index page */
.default-main {
  min-height: 60vh;
  padding: 80px 24px;
  background: #050505;
  color: #fff;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 20px 24px 32px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-brand {
    justify-content: center;
  }

  .hero-brand h2 {
    font-size: 48px;
  }

  .panel-shape {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .main-nav { display:flex; gap:28px; margin-top:-14px; }

  .main-nav a { text-decoration:none; color:#f1d48a; font-size:18px; font-weight:700; padding:4px 0; transform:scale(1); transform-origin:center; transition:transform .2s ease, opacity .25s ease; }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-brand h2 {
    font-size: 38px;
    letter-spacing: 4px;
  }
}

.site-logo-img { height: 300px; width: auto; display: block; }
