/* styles.css */

/* Reset & Base Styles */
html, body {
  background-color: black;
  margin: 0;
  padding: 0;
  height: 100%;
  color: #FFFFFF;
  background: url('../images/lyre-holidng-desktop-001.jpg');
  background-repeat: no-repeat;
  background-position: center center;  /* always center the image */
  background-size: cover;              /* scale to fill, cropping minimally */
  /* remove `fixed` so it scrolls naturally and won’t get “stuck” */
  text-align: left;
  min-height: 100vh;
  
}

body.holding-page {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: archivo, sans-serif;
  font-weight: 300;
}

/* Override font for tagline and footer to Space Mono */
.hero-tagline,
.footer-left,
.footer-right {
  font-family: "Space Mono", monospace;
  font-weight: 300;
}

/* Dark Overlay */
body.holding-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Header */
.site-header {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.logo {
  height: 32px;
  display: block;
  padding: 0 3%;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
  
}
.hero-content {
  max-width: 600px;
  margin: 0 5%;
}
.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  color: #9ca0a9;
  font-weight: 300;
  
  
}
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 300;
  
  
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  color: #9ca0a9;
}
.btn-contact {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  /* 1px border at 35% opacity of #CBB9AE */
  border: 1px solid rgba(203, 185, 174, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: #CBB9AE;
  transition: 
  border-color 0.3s ease,
  color 0.3s ease;
}

.btn-arrow {
  font-size: 1.2em;          /* 150% of the parent font-size */
  line-height: 1;            /* prevent extra vertical spacing */
  vertical-align: middle, auto;    /* keep it centered with the text */
  margin-left: 0.25em;       /* a little breathing room */
}

.btn-contact:hover {
  /* make the outline fully opaque */
  border-color: rgba(203, 185, 174, 1);
  /* switch the text to white */
  color: #FFFFFF;
}

/* remove any old footer border */
.site-footer {
  border-top: none;
  padding: 0; /* we’ll control spacing below */
  background: transparent;
}

/* flex container for the two text items */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5%;      /* inset to match your hero */
  padding: 1rem 0;    /* space above the line */
}

/* the inset separator line */
.footer-line {
  width: 90%;                         /* 100% − 2×5% inset */
  margin: 5 5%;                       /* center it under the text */
  border: none;
  border-top: 2px solid rgba(255,255,255,0.2);
}

/* text styling */
.footer-left,
.footer-right {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* mobile stacking */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    margin-top: 0.5rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  html, body {
    background: url('../images/lyre-holidng-mob-001.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  .hero {
    padding: 0 5%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  .btn-contact {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    display: none;
  }
  .footer-right {
    margin-top: 1rem;
  }
}
