﻿/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  height: 700px;
  background: url("Backround.png") 45% center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* ================= SLIDESHOW ================= */

.slideshow-container {
  position: relative;
  width: 80%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
  z-index: 2;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  filter: saturate(1.05) contrast(1.04);
}

.slide img[src="Worldscrew.JPG"] {
  object-position: center 20%;
}

.slide.active-slide {
  opacity: 1;
  position: relative;
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  font-size: 22px;
  letter-spacing: 2px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  transform: translateY(-50%);
  transition: 0.3s ease;
  z-index: 3;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  color: #ff0000;
  text-shadow: 0 0 10px #ff0000;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.dot.active {
  background-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

/* ================= NEWS SECTION ================= */

.news-section {
  width: 85%;
  max-width: 1200px;
  margin: 80px auto 20px auto;
}

.news-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.news-image {
  flex: 0 0 320px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 32px;
  color: #ff0000;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.news-text {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
  margin: 0;
}

.news-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.news-info-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 12px;
  background: rgba(255, 0, 0, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  max-width: 320px;
}

.news-info-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 0, 0, 0.16);
}

.news-info-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7a7a;
}

.news-info-title {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
}

.bot-highlights-section {
  width: 85%;
  max-width: 1200px;
  margin: 40px auto 90px auto;
}

.section-heading {
  margin-bottom: 24px;
}

.section-title {
  font-size: 28px;
  color: #ff0000;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.35);
}

.section-subtitle {
  color: #bbb;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.bot-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bot-highlight-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bot-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 14px 40px rgba(255, 0, 0, 0.18);
}

.bot-highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bot-highlight-info {
  padding: 18px 20px 20px;
}

.bot-highlight-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bot-highlight-info p {
  margin: 0;
  color: #ddd;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .news-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
  }

  .bot-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TEXT ================= */

.welcome-text {
  text-align: center;
  margin-top: 60px;
  font-size: 52px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.content-text {
  text-align: center;
  color: #bbb;
  font-size: 20px;
  max-width: 900px;
  margin: 20px auto 80px auto;
  line-height: 1.8;
  letter-spacing: 1px;
}

/* ================= 3 IMAGE SECTION ================= */

.three-images {
  width: 85%;
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.image-card {
  text-align: center;
  transition: 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.14);
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.image-card img:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.32);
  filter: saturate(1.08) contrast(1.05);
}

.image-caption {
  margin-top: 15px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #bbb;
  text-transform: uppercase;
}

.image-title {
  font-size: 22px;
  color: #ff0000;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .three-images {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ================= SPONSORS SECTION ================= */

.sponsors-section {
  padding: 100px 10%;
  text-align: center;
}

.sponsors-title {
  font-size: 42px;
  color: #ff0000;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.sponsors-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-content img {
  width: 500px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.sponsors-text {
  max-width: 500px;
  text-align: left;
  display: flex;
  align-items: center;
}

.sponsors-text p {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.8;
  color: #ddd;
  margin: 0;
}

@media (max-width: 900px) {
  .sponsors-content {
    flex-direction: column;
  }

  .sponsors-text {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 520px;
  }

  .slide img {
    height: 320px;
  }

  .welcome-text {
    font-size: 36px;
  }

  .contact-panel-grid {
    grid-template-columns: 1fr;
  }
}

.sponsors-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cta-parallelogram {
  display: inline-block;
  padding: 14px 36px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transform: skew(-15deg);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-parallelogram:hover {
  transform: skew(-15deg) scale(1.03);
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.6);
  filter: brightness(1.05);
}

.cta-parallelogram span {
  display: inline-block;
  transform: skew(15deg);
}

/* ================= CONTACT PANEL ================= */

.contact-panel {
  padding: 20px 10% 140px;
}

.contact-panel-title {
  font-size: 42px;
  color: #ff0000;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 30px;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-person {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.contact-name {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.contact-role {
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.contact-panel-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-image,
.contact-info {
  height: 100%;
}

.contact-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(1.04) contrast(1.03);
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.contact-block {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.contact-label {
  display: block;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}

@media (max-width: 900px) {
  .contact-people {
    grid-template-columns: 1fr;
  }
}

