/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /* background: linear-gradient(135deg, #3b0015, #7a0c0c); */
  background-image:url(../assets/BG.png) ;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #eee;
  border-radius: 0px 0px 12px 12px;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  color: #000;
}

.repo-btn {
  background: #4caf50;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* HERO */
.hero {
  padding: 60px 0;
}

.hero-box {
  background: #ccc;
  border-radius: 20px;
  padding: 100px 40px;
  text-align: center;
  color: #000;
}

.hero h1 {
  font-size: 2.5rem;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}


/* .section.dark {
  /* background: rgba(0, 0, 0, 0.2); */
/*} */

.section-title {
  margin-bottom: 40px;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* GRID SYSTEM */
.grid {
  display: grid;
  gap: 30px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* CARDS */
.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.card.red {
  background: #d43b1f;
}

.card-img {
  background: #ddd;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.card h3 {
  margin-bottom: 5px;
}

/* VIDEO CARDS */
.video-card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumb {
  height: 140px;
  background: #bbb;
}

.video-info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

/* TESTIMONIALS */
.testimonial {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  /* background: #111; */
  padding: 40px 0;
  border-top: solid 1px white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  background: #444;
  padding: 20px;
}
