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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ================= HEADER ================= */
.head {
  background: url('../img/Imatge 1.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: #ffffff;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  align-items: center;
}

.logo {
  width: 89px;
  height: 100px;
}

.menu {
  list-style: none;
  display: flex;
  gap: clamp(20px, 4vw, 65px);
  margin-left: auto;
  font-family: 'Outfit', sans-serif;
}

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

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(25px, 4vw, 75px);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(110px, 20vw, 300px);
  line-height: 0.9;
}

/* ================= 1995 ================= */
.s1995 {
  background: #DECBB7;
  padding: 120px;
}

.s1995 h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 75px;
  margin-bottom: 40px;
}

.s1995-content {
  display: flex;
  gap: 60px;
}

.s1995 p {
  font-size: 24px;
  width: 50%;
}

.s1995 img {
  width: 50%;
  object-fit: cover;
}

/* ================= SHARED TITLES ================= */
.section-title {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

/* ================= LA COLLA ================= */
.colla {
  background: #760E06;
  padding: 100px;
}

.colla-title {
  font-size: 300px;
  white-space: nowrap;
}

.colla-images {
  display: flex;
}

.colla-images img {
  width: 33.333%;
  border: 4px solid #ffffff;
}

/* ================= CORREFOC ================= */
.correfoc {
  background: #000000;
  padding: 120px;
  text-align: center;
}

.correfoc-picture img {
  width: 100%;
  object-fit: contain;
}

.correfoc-title {
  font-size: 300px;
  white-space: nowrap;
}

/* ================= NOTÍCIES ================= */
.noticies {
  background: #760E06;
  padding: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noticia-card {
  background: #DECBB7;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}

.noticia-text {
  width: 50%;
  padding: 40px;
}

.noticia-card img {
  width: 50%;
  object-fit: cover;
}

.noticia-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
}

.noticia-card p {
  font-size: 24px;
  margin: 20px 0;
}

button {
  font-family: 'Outfit', sans-serif;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 12px 28px;
}

/* ================= FOOTER ================= */
.footer {
  background: #000000;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 546px;
}

.footer-content {
  color: #ffffff;
  text-align: right;
}

.footer-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 80px;
  margin-bottom: 30px;
}

.footer-info {
  display: flex;
  gap: 40px;
}

.footer-info p {
  font-size: 24px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1023px) {
  .colla-title,
  .correfoc-title {
    font-size: 180px;
  }

  .s1995-content,
  .colla-images,
  .noticia-card {
    flex-direction: column;
  }

  .s1995 p,
  .s1995 img,
  .colla-images img,
  .noticia-text,
  .noticia-card img {
    width: 100%;
  }

  .footer-content h1 {
    font-size: 55px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

@media (max-width: 475px) {
  .colla-title,
  .correfoc-title {
    font-size: 110px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
  }

  .footer-content {
    text-align: center;
  }

  .footer-info {
    align-items: center;
  }
}
