/* Import Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;900&display=swap');

/* Apply globally */
body {
  font-family: 'Raleway', sans-serif;
}

/* --- Brand Banner Section --- */
.brand-banner {
  width: 100%;
  height: 40vh; /* change to 100vh if you want full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  top: 0;
  padding: 60px 0;
}

/* Brand title styling */
.brand-banner h2 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 20px 40px;
  border-radius: 12px;

  backdrop-filter: blur(4px);
}

/* Backgrounds for each brand */
.bertacyl-banner {
  background: linear-gradient(135deg, #ff7b00, #ffb347);
}

.chobs-banner {
  background: linear-gradient(135deg, #009688, #4db6ac);
}

.freshandy-banner {
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
}

.burtrol-banner {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

/* --- Team Banner --- */
.brand-banner {
  text-align: center;

  color: #fff;
  transition: background 0.4s ease;
}



.team-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

#team-name {
  font-size: 80px;
  font-weight: 700;
  margin: 0;
  transition: opacity 0.4s ease;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 30px;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* --- Supplier Section --- */
.supplier-locations {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.supplier-locations h2 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
  font-weight: 700;
}

/* --- Accordion --- */
.accordion {
  border-radius: 12px;
  overflow: hidden;
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
  background: #fff;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f7f7f7;
  border: none;
  outline: none;
  text-align: left;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #e0e0e0;
}

.accordion-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Accordion Body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  background: #fff;
}

.accordion-body p {
  padding: 12px 0;
  margin: 0;
  color: #555;
}

/* Active state */
.accordion-item.active .accordion-body {
  padding: 12px 24px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Team Banner */
  .brand-banner {

  }

  #team-name {
    font-size: 48px;
    line-height: 1.1;
  }

  .team-nav {
    gap: 10px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  /* Supplier Section */
  .supplier-locations h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  /* Accordion */
  .accordion-header {
    font-size: 18px;
    padding: 14px 18px;
  }

  .accordion-body {
    padding: 0 18px;
  }

  .accordion-body p {
    padding: 10px 0;
  }
}

/* Extra small screens (phones < 480px) */
@media (max-width: 480px) {
  #team-name {
    font-size: 36px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .supplier-locations h2 {
    font-size: 40px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 12px 14px;
  }

  .accordion-body {
    padding: 0 14px;
  }

  .accordion-body p {
    padding: 8px 0;
  }
}
