/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto Mono'
  color: #333;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Hide main content initially */
#mainContent {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

header {
  background-color: #2a1f1f;
  opacity: 70%;
}

/* Full Page Container */
.full-page {
  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-position: -280px -200px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5); /* Add shadow */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  height: 60vh;
  color: #000;
}

/* Content Section */
.content {
  flex: 1;
  background: url('https://www.transparenttextures.com/patterns/handmade-paper.png'), #F5F5F7;
  padding: 50px 20px;
}

/* Content Section */
.content-playlist {
  flex: 1;
  background: url('https://www.transparenttextures.com/patterns/handmade-paper.png'), #B7B7B7;
  padding: 50px 20px;
}

.content-title {
  font-family: 'Doto';
}

/* Footer */
.footer {
  background: url('https://www.transparenttextures.com/patterns/paper.png'), #705C53;
  border-top: 2px solid #ccc;
  font-size: 1rem;
  font-style: italic;
}

/* Photo Card Styles */
.photo-card {
  border: 8px solid #e4d8c3; /* Vintage border color */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #faf7f0;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.photo-card:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.3);
}

/* Caption Styles */
.photo-caption {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 5px solid #e4d8c3; /* Matches the card border */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

