/* ============================================
   ECSTATICS - Main Stylesheet (Clean Rose Version)
   ============================================ */

/* ----- CUSTOM FONTS ----- */
@font-face {
  font-family: 'Super Shake';
  src: url('fonts/super-shake.ttf') format('truetype');
}

@font-face {
  font-family: 'Aquifer';
  src: url('fonts/Aquifer.ttf') format('truetype');
}

/* ----- RESET ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- BASE ----- */
body {
  font-family: 'Aquifer', arial, sans-serif;
  background: #14100e;
  color: #ffffff;
  line-height: 1.7;
  padding-top: 80px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #a56d70;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #d58b85;
}

/* ----- HEADINGS ----- */
h1, h2 {
  font-family: 'Super Shake', arial, sans-serif;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #d58b85;
  border-bottom: 2px solid #a56d70;
  padding-bottom: 0.5rem;
}

/* ----- NAVIGATION ----- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #14100e;
  border-bottom: 1px solid #7b7673;
  z-index: 1000;
}

/* BAND NAME */
nav strong a {
  font-family: 'Super Shake', arial, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: #ffffff;
  display: inline-block;
  transform: rotate(-3deg);
  transition: 0.3s ease;
}

nav strong a:hover {
  transform: rotate(0deg);
  color: #d58b85;
}

/* NAV LINKS */
nav div a {
  font-family: 'Aquifer', arial, sans-serif;
  margin-left: 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  position: relative;
}

/* underline animation */
nav div a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #a56d70;
  transition: width 0.3s ease;
}

nav div a:hover::after {
  width: 100%;
}

/* ----- HEADER ----- */
header {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #14100e 0%, #1b1614 100%);
  overflow: hidden;
}

.logo-container {
  background: transparent;
  padding: 0;
  border: none;
}

header img {
  max-width: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header img:hover {
  transform: scale(1.04);
  opacity: 0.85;
}

/* ----- SECTIONS ----- */
section {
  padding: 6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

section p {
  font-size: 1.1rem;
  color: #7b7673;
  margin-bottom: 1.5rem;
}

section + section {
  border-top: 1px solid #1e1a18;
}

/* ----- CONTACT ----- */
#contact {
  text-align: center;
}

/* ----- FOOTER ----- */
footer {
  background: #0f0c0b;
  color: #7b7673;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #1e1a18;
}

footer a {
  color: #a56d70;
}

footer a:hover {
  color: #d58b85;
}



/* ----- MOBILE ----- */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    padding: 1rem;
  }

  nav div {
    margin-top: 1rem;
  }

  nav div a {
    margin: 0 0.8rem;
    font-size: 0.8rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  header img {
    width: 80vw;
    max-width: none;
  }
}
