/*
Theme Name: Replica
Author: Prnx
Version: 1.0
*/

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #000;
  color: white;
  padding: 20px 0;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HERO SLIDER */
.hero .swiper-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.hero h1 {
  font-size: 48px;
  max-width: 600px;
}

.hero p {
  max-width: 600px;
  margin-top: 10px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

/* FOOTER */
.site-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 40px 0;
}

/* =====================
   RESPONSIVE (MOBILE)
===================== */
@media (max-width: 768px) {

  .hero .swiper-slide {
    height: 60vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .site-header nav {
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 40px 0;
  }
}
