@font-face {
  font-family: 'Bauhaus';
  src: url('../fonts/BauhausRegular.ttf') format('truetype');
}

:root {
  --bg-color: #b98b00;
  --border-color: #9e7700;
  --content-color: #E6AC00;
  --text-secondary-color: #FD0000;
  --text-primary-color: #0000FF;
  --font-family: 'Bauhaus', sans-serif;
}

body {
  background:  linear-gradient(90deg, var(--bg-color) 0%, #E6AC00 100%);
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1, h2, h3, h4, p {
  font-family: 'Bauhaus', sans-serif;
  color: var(--text-primary-color);
  text-align: center;
  margin: 0;
}
.secondary-text {
  color: var(--text-secondary-color);
}

h1 {
  font-size: 2.5rem;
}
h2{
  font-size: 2rem;
  font-weight: 300;
}
h3, p {
  font-size: 1.5rem;
  font-weight: 300;
}
h4 {
  font-size: 1rem;
}

.about-us {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  
}

button {
  background-color: var(--bg-color);
  color: white;
  border: var(--bg-color) 2px solid;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1rem;
}

.contact-link {
  color: var(--text-primary-color);
  text-decoration: none;
  font-family: var(--font-family); 
}

.contact-link:hover {
  text-decoration: underline; 
}

.content {
  margin: 2rem;
  background-color: #E6AC00;
  border: 8px solid #E6AC00;
  aspect-ratio: 1/1.414;
  border-radius: 16px;
  height: fit-content;
  /* width: 90%;           Changed from 50% to 90% for better mobile fit */
  max-width: 600px;     /* Prevents it from getting too wide on desktop */
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin:  0.5rem;
}
.showcase {
    border: 3px solid var(--border-color);
    border-radius: 8px;
}

.slogan-box {
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img {
        margin: 0;
    }
}