/* =============================
            FONTS             /
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Roboto&display=swap');

:root {
  --font-title:  'Comic Sans MS', cursive;
  --font-body: 'Comic Sans MS', cursive;
}

/* =============================
           COLOR PALETTE       /
=============================*/
:root{
  --color-quartz: #E9DFD3;
  --color-night: #202020;
  --color-bark: #a99e89;
  --color-alabaster: #edebe4;
}

/* General reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============================
            HEADER             /
=============================*/
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background-color: var(--color-night);
  color: var(--color-alabaster);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.menu-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 24px;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  width: 100%;
  background-color: var(--color-alabaster);
  border-radius: 2px;
}

/* =============================
    PARALLAX BACKGROUNDS       /
=============================*/
.parallax {
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: night;
  font-size: 2rem;
}

/* Individual colors for testing visuals */

#p1.parallax {
  background-image: url('assets/img/amiro3.png')
}

#p2.parallax {
  background-image: url('assets/img/amiro1.png')
}

/* =============================
            SECTIONS           /
=============================*/
.section {
  height: 300px;
  padding: 2rem;
  background-color: var(--color-night);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Brutalist Hero Section */
#s1.section {
  height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--color-night);
  padding: 4rem 2rem;
  gap: 2rem;
  color: var(--color-alabaster);
  position: relative;
  overflow: hidden;
}

/* HEADLINE: bold, massive, unforgiving */
#s1.section h2 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  max-width: 90%;
}

/* SUBTEXT: confident but quieter */
.subtext {
  font-size: 1rem;
  color: var(--color-quartz);
  max-width: 500px;
  text-align: left;
}

/* CTA Button: loud and aggressive */
.cta-button {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: var(--color-bark);
  color: var(--color-alabaster);
  font-size: 1rem;
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.cta-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  background-color: var(--color-quartz);
  color: #000;
}
.section h4 {
  max-width: 600px;
  font-size: 1.2rem;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--color-quartz);
  text-transform: uppercase;
  letter-spacing: 1px;
}
body, p, .subtext {
  color: var(--color-quartz);
  font-family: var(--font-body);
}

#s2.section{
  height: 100vh;
  flex-direction: column;

}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.barber img {
  width: 448px;
  height: auto;
  display: block; /* removes inline whitespace */
}

footer{
  background-color: var(--color-night);
}
