/*==== navbar ====*/
html { scroll-behavior: smooth; }
body {
  padding-top: 90px; 
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000000;
  color: #ffc200;
}

nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #0000;

  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center; 
  align-items: center;
}

nav.site-nav a {
  color: #ffc200;
  font-weight: 600;
  text-decoration: none;
}

nav.site-nav a:hover {
  text-decoration: underline;
}

/*==== top banner or hero ====*/
.hero {
  position: sticky;
  height: 600px;
  background: url() center/cover no-repeat;
  color: #ffffff;
  background: linear-gradient(353deg,rgba(0, 255, 255, 0.8) 10%, rgba(0, 0, 0, 1) 50%, rgba(230, 37, 223, 0.8) 90%) rgba(0, 0, 0, 1) 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: end;
}

.hero-logo {
  position: relative;
  transform: translate;
  width: 60vw; 
  height: 30vw;
  max-width: 816px;
  max-height: 265px;
  z-index: 2;
}

.hero p {
  font-size: 1rem;
  margin: 0;
  opacity: 1;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero .content {
  position: absolute;
  align-items: center;

  z-index: 3;
  bottom: 15px;

}
/* HERO FONT */
.russo-one-regular {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/*==== card shape for contact ====*/
.card {
  width: min(90%, 700px);
  margin: 2rem auto;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
  border-radius: 1rem;
  background: #000000;
  color: #ffc200;
  text-align: center;
  box-shadow: 0 0 20px #e625df;
  box-sizing: border-box;
}

/* card * = valid in all .card classes */
.card * {
  max-width: 100%;
  box-sizing: border-box;
}

/* scaling for narrow screens*/
@media (max-width: 768px) {
  .card.left,
  .card.right {
    margin: 1.5rem auto;
    text-align: left; 
  }
}

/* text colour: Citrus Splash */
/* Black */
.bg-100 { 
  background: #000000; 
  color: #ffc200; 

  /* Black */
} 
.bg-400 { 
  background: #000000; 
  color: #ffc200; 
}

/* Black */
.bg-200 {
  background: hsl(0, 0%, 0%); 
  color: #ffc200; 
}

/* Black */
.bg-300 {
  background: #000000; 
  color: #ffc200; 
}

.section {
  padding-block: clamp(2rem, 6vw, 4rem);
  scroll-margin-top: 72px;
}


/* optional: stack on narrow screens */
@media (max-width: 800px) {
  .flex-container > div {
    flex: 1 1 100%;
  }
}


/*==== Images ====*/

/* Image 1 landscape */
.img1 {
  flex: 1 1 clamp(220px, 34vw, 460px);
  width: auto;
  max-width: clamp(220px, 40vw, 460px);
  height: auto;
  aspect-ratio: 4 / 3;     /* w/h */
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
}

/* Image 2 portrait crop */
.img2 {
  flex: 1 1 clamp(220px, 34vw, 460px);
  width: auto;
  max-width: clamp(220px, 40vw, 460px);
  height: auto;
  aspect-ratio: 3 / 4;     /* w/h */
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,.1);

  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Image 3 square crop */
.img3 {
  flex: 1 1 clamp(220px, 34vw, 460px);
  width: auto;
  max-width: clamp(220px, 40vw, 460px);
  height: auto;
  aspect-ratio: 1 / 1;     /* w/h */
  height: auto;
  object-fit: cover;
  border-radius: 1rem; 
  box-shadow: 0 0 10px rgba(0,0,0,.1);

  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* also used in contact form */
.stack > * + * { 
    margin-top: 1rem; 
}

/* grouped spacing for form fields */
.stack label {
  display: block;
  margin-bottom: .35rem;
}

.stack label + input,
.stack label + textarea {
  margin-top: 0;
  margin-bottom: 1rem; 
}


/*==== contact form ====*/

#contact .card { text-align: left; }

#contactForm input,
#contactForm textarea {
  display: block;
  width: 100%;
  padding: .65rem .8rem;
  border: 1px solid #f700ff;
  border-radius: .6rem;
  background: #000;
  color: #ffc200;
  font: inherit;
}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: 2px solid #00ffff;
  box-shadow: 0 0 8px #e625df;
}

#contactForm button {
  padding: .65rem 1rem;
  border-radius: .6rem;
  border: 1px solid #f700ff;
  background: #e625df;
  color: #000;
  font: inherit;
  cursor: pointer;
}
#contactForm button:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 20px #e625df;
  transition: box-shadow .2s ease, filter .2s ease;
}
#contactForm .status { 
    color: #ffc200; 
}

#contact .card a { 
    color: #ffc200; 
}


/*==== footer  ====*/
footer {
  position: static;      
  bottom: 0;             
  right: 0;              
  text-align: right;
  padding: 0.5rem 1rem; 
  font-size: 0.85rem;
  color: #ffc200;
  background: #000000;
  border-top-left-radius: 8px;  
  box-shadow: -2px -2px 5px rgba(0,0,0,0.05); 
}

a {
  color: #ffc200;
  text-decoration: none;
  font-weight: bold;

}

footer a {
  color: #ffc200;
  text-decoration: none;
  font-weight: 600;
  transition: text-shadow .3s ease;
}
footer a:hover {
  text-shadow: 0 0 8px currentColor;
}


a:hover {
  text-decoration: underline;
}

/* ==== TEST ==== */
* {
  box-sizing: border-box;
}

.test-container {
  display: flex;
  flex-direction: row;
  align-items: center;  
  justify-content: center;
  flex-wrap: wrap;
  background-color: #000000;
  text-align: justify;
  text-justify: inter-word;
  padding: 10px;

  gap: 0; 
  max-width: 1400px;   
  margin-inline: auto;
}

.test-container > div {
  flex: 1 1 50%; 
  padding: 10px;
  background-color: #000000;
  color: #ffc200;
  line-height: 1.4; 
  height: auto;  
  
}

.test-item-left, .test-item-right {
  background-color: #4f2f2f;
  color: #FFF;
  flex: 1 1 50%;
  padding: 6rem clamp(3rem, 6vw, 8rem);
  box-sizing: border-box;
  box-shadow: 0 0 20px #e625df;
}

/* 1 col on phones */
.test-flash-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin-inline: auto;
  padding: 10px;
}

/* 2 cols on tablets */
@media (min-width: 600px) {
  .test-flash-card { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
}

/* 3 cols on desktops (keeps 2 rows of 3) */
@media (min-width: 1000px) {
  .test-flash-card { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

.test-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: #000;
  color: #e625df;
  box-shadow: 0 0 20px currentColor;
  transition: box-shadow .3s ease, transform .3s ease;
}
.test-card h2 { margin: 0 0 .5rem; }
.test-card p  { margin: 0 0 1rem; }
.test-icon    { width: 56px; height: auto; margin-top: auto; }

.test-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 10px currentColor,
    0 0 22px currentColor,
    0 0 36px currentColor;
}


.test-flash-card .test-card-cyan {
  box-shadow: 0 0 20px #00ffff; /* Cyan */
  color: #00ffff;
}
.test-flash-card .test-card-gold {
  box-shadow: 0 0 20px #ffc200; /* Lemon Splash */
  color: #ffc200;
}
.test-flash-card .test-card-magenta {
  box-shadow: 0 0 20px #e625df; /* Pink Pride */
  color: #e625df;
}
.test-flash-card .test-card-green {
  box-shadow: 0 0 20px #00ffa6; /* Medium Spring Green */
  color: #00ffa6;
}
.test-flash-card .test-card-red {
  box-shadow: 0 0 20px #ff6b6b; /* Pompelmo */
  color: #ff6b6b;
}
.test-flash-card .test-card-purple {
  box-shadow: 0 0 20px #8c52ff; /* Candy Grape Fizz */
  color: #8c52ff;
}



.test-icon {
  max-width: 90px;
  max-height: 90px;
}


/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .test-container {
    flex-direction: column;
  }
  .test-container > div {
    flex-basis: 100%;
  }
}


/* cute text animation - about me section. */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.title span:after{
  content: 'Artist';
  animation: words 6s infinite;
}

@keyframes words {
  0%, 33% {
    content: 'an Artist';
    color: #00ffff;
  }

  34%, 66%{
    content: 'a Musician';
    color: #e625df;
  }

  67%, 100%{
    content: 'a Producer';
    color: #00ffa6;
  }

}
