/* ---------------- GLOBAL STYLES ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden; 
  background: #0c0c10;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

/* ---------------- SHARED OVERLAY ---------------- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,16,0.8) 0%, rgba(12,12,16,0.2) 50%, rgba(12,12,16,0.8) 100%);
  z-index: 1;
}

/* ---------------- NAVIGATION ---------------- */
.top-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 40px;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 25px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* ---------------- PAGE CONTAINERS ---------------- */
.landing-container, .holding-page, .socials-page {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing-container {
  background: url('../media/images/HarryLookingAtCamerajpg.jpg') center/cover no-repeat;
}

.holding-page {
  background: url('../media/images/Harrt-Dartmoor-Devon-UK.jpg') center/cover no-repeat;
}

.socials-page {
  background: url('../media/images/Harry1.jpg') center/cover no-repeat;
}

/* ---------------- CONTENT WRAPPERS ---------------- */
.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.header-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.7;
  font-style: italic;
  letter-spacing: 1px;
}

.lyric-teaser {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* ---------------- PRE-SAVE BAR (NEW) ---------------- */
.pre-save-bar {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-decoration: none;
    width: 90%;
    max-width: 380px;
    animation: fadeInUp 1.2s ease forwards;
}

.pre-save-content {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artwork-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.artwork-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.pre-save-info {
    flex-grow: 1;
    text-align: left;
}

.pre-save-status {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    margin-bottom: 2px;
}

.pre-save-text {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 400;
}

.pre-save-icon {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.3;
    transition: 0.3s;
}

.pre-save-bar:hover .pre-save-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.pre-save-bar:hover .pre-save-icon {
    opacity: 1;
    transform: translateX(5px);
}

/* ---------------- ENHANCED SOCIAL BUTTONS ---------------- */
.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  animation: fadeInUp 1s ease forwards;
}

.social-btn {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 40px;
  width: 300px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; 
  position: relative;
  overflow: hidden;
}

.social-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  border-color: #fff;
}

/* ---------------- LINKS & FOOTER ---------------- */
.back-link {
  display: inline-block;
  margin-top: 50px;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.back-link:hover {
  opacity: 1;
  border-bottom: 1px solid #fff;
}

.minimal-footer {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  font-size: 0.7rem;
  opacity: 0.3;
  letter-spacing: 1px;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 600px) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .nav-links a {
    margin: 0 5px;
    font-size: 0.7rem;
  }

  .header-text h1 {
    font-size: 3.5rem;
  }

  .social-btn {
    width: 260px;
    padding: 14px 20px;
  }

  .pre-save-bar {
      bottom: 80px;
  }
}