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

/* ---------- Base Styles ---------- */
html, body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #000;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ---------- Layout ---------- */
.main {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-y: auto;
}


/* ---------- Slider ---------- */
.slider-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* ---------- Arrows ---------- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.arrow.left { left: 25px; }
.arrow.right { right: 25px; }

/* ---------- Social ---------- */
.social {
  text-align: right;
  background: #1a1a1a;
  padding: 6px 8%;
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 10px;
}

.social a {
  color: #fff;
  background-color: #0a19f1dc;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 5px;
}

/* ---------- Footer ---------- */
footer {
  background-color: #111;
  color: #ccc;
  padding: 20px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 220px;
  margin: 10px 0;
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

footer p, footer a {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.5;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .slider-container { min-height: 70vh; }
}

@media (max-width: 768px) {
  .slider-container { min-height: 30vh; }

  footer {
      flex-direction: column;
      text-align: center;
      align-items: center;
      gap: 15px;
  }

  .footer-column { width: 100%; min-width: unset; }
  .social { text-align: center; }
}

@media (max-width: 480px) {
  .slider-container { min-height: 25vh; }
  footer h3 { font-size: 0.95rem; }
  footer p, footer a { font-size: 0.8rem; }
  .arrow { font-size: 1.8rem; padding: 6px 10px; }
}
  
