/* =========================================================
   HOME PAGE
========================================================= */

body {
  background: #0d0d0d;
  color: #e4e4e4;
  font-family: "Inter", sans-serif;
}

/* =========================================================
   HERO SECTION
========================================================= */
/* =========================================================
   Hero Section (Main Intro)
========================================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0d0d0d 100%);
  padding: 0 20px;
  color: #fff;
}

.hero-content {
  max-width: 750px;
  animation: fadeIn 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 35px;
}

.hero-content strong {
  color: #ff6600;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff914d);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.8);
  background: linear-gradient(135deg, #ff914d, #ff6600);
}

/* Subtle fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 350px;
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
}

/* Scroll animation when clicking hero button */
html {
  scroll-behavior: smooth;
}

.hero {
  flex-wrap: wrap;
}

/* Responsive */
/* =========================================================
   MOBILE DESIGN — Optimized for Phones
========================================================= */
@media (max-width: 900px) {

  /* Make the hero more like a mobile app intro */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1.1rem;
    color: #d4d4d4;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .hero-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    border-radius: 10px;
    text-align: center;
  }

  .hero-image img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(94, 91, 251, 0.5));
  }

  /* Learning section */
  .perbajtja {
    padding: 50px 20px;
    margin-top: 30px;
  }

  .perbajtja .title {
    font-size: 1.6rem;
  }

  .perbajtja .desc {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .perbajtja .btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 1.05rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}



/* === Main Container === */
.main-content {
  max-width: 900px;
  margin: 120px auto 0;
  padding: 0 20px;
  text-align: center;
}

/* Welcome text */
.welcome-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.last-updated {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 35px;
}

/* Paragraphs */
.content p {
  font-size: 1.1rem;
  color: #eaeaea;
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: left;
}

/* === Section about learning === */
.perbajtja {
  background: #111;
  color: #e6edf3;
  padding: 60px 30px;
  margin: 80px auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  max-width: 900px;
}

.perbajtja .title {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.perbajtja .desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.perbajtja .list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.perbajtja .list li {
  margin: 10px 0;
  background: rgba(94, 91, 251, 0.12);
  padding: 12px 15px;
  border-radius: 10px;
  transition: background 0.3s;
}
.perbajtja .list li:hover {
  background: rgba(94, 91, 251, 0.25);
}

/* Structure info */
.perbajtja .structure h3 {
  color: white;
  margin-bottom: 10px;
}
.perbajtja .structure ul {
  list-style: none;
  padding: 0;
}
.perbajtja .structure li {
  margin: 8px 0;
}

/* End message */
.perbajtja .end {
  margin-top: 25px;
  font-size: 1.1rem;
  text-align: center;
  color: #c9d1d9;
}

/* Button */
/* Orange Themed CTA Button */
.perbajtja .btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff914d);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.perbajtja .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.8);
  background: linear-gradient(135deg, #ff914d, #ff6600);
}

/* =========================================================
   Structure Section – Orange Themed Version
========================================================= */
.structure {
  margin-top: 60px;
  text-align: center;
}

.structure-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.structure-desc {
  color: #cfcfcf;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Card Container */
.structure-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Each Card */
.structure-card {
  background: #111;
  border-radius: 16px;
  padding: 40px 25px;
  width: 280px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.structure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.3);
  border-color: rgba(255, 102, 0, 0.3);
}

/* Icon styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6600, #ff914d);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.structure-card:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.7);
}

/* Card titles and text */
.structure-card h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.structure-card p {
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .structure-cards {
    flex-direction: column;
    align-items: center;
  }
  .structure-card {
    width: 90%;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .main-content {
    padding: 0 15px;
  }
  .welcome-title {
    font-size: 2rem;
  }
  .perbajtja {
    padding: 40px 20px;
  }
}



/* Icons inside the "Si është ndarë kursi" section */
.structure-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.structure-list .icon {
  color: orange; /* main theme color */
  font-size: 1.3rem;
  min-width: 25px;
  text-shadow: 0 0 6px #d05e00;
  transition: transform 0.3s ease, color 0.3s ease;
}

.structure-list li:hover .icon {
  transform: scale(1.2);
  color: #00d4ff;
}
