* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  height: 220px;
  background-image: url('images/f3.webp');
}

.header-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  color: white;
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 120px;
  width: auto;
}

.logo h1 {
  font-size: 18px;
  line-height: 1.1;
  font-weight: bold;
}

/* ACTIONS */
.actions a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  opacity: 1;
}

/* FOOTER */
.footer {
  background: #f5f5f5;
  padding: 50px 40px 20px;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* FOOTER LIST */
.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #6c4cf1;
}

/* RIGHT COLUMN */
.footer-col.right {
  text-align: right;
}

.footer-col h3 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin: 10px 0;
}

.socials a {
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  color: #6c4cf1;
}

/* BUTTON */
.follow-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #6c4cf1;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.follow-btn:hover {
  background: #563bd1;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
}

.payments img {
  height: 25px;
  margin-left: 10px;
  max-width: 120px;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-col.right {
    text-align: left;
  }

  .socials {
    justify-content: flex-start;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
  }
}