/* 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;
}

/* 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);
}
