/* === COLOUR VARIABLES === */
:root {
  --pastel-pink: #FF7F50;
  --pastel-lime: #3DAEFF;
  --dark-bg: #1B1212;
}

/* === GLOBAL STYLES === */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

a {
  color: var(--pastel-pink);
  text-decoration: none;
}

a:hover {
  color: var(--pastel-lime);
  text-decoration: underline;
}

/* === HERO SECTION === */
.hero {
  height: 50vh;
  background: url('images/hero_image.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 0.5rem;
  color: #fff;
  /*color: var(--pastel-pink);*/
}

.hero-text h2 {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SECTIONS === */
.section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

.section h3 {
  display: none; /* Hide headings */
}

/* === ABOUT === */
.about .bio-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about p {
  flex: 1 1 300px;
  max-width: 400px;
}

.bio-img {
  flex: 1 1 200px;
  max-width: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pastel-lime);
}

/* === PORTFOLIO VIDEOS === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px var(--pastel-pink);
}

/* === MUSIC PLAYER === */
.player {
  text-align: center;
}

#playlist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

#playlist li {
  cursor: pointer;
  margin: 0.5rem auto;
  padding: 0.5rem;
  border: 1px solid #444;
  border-radius: 5px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#playlist li:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px var(--pastel-pink);
}

/* Instagram horizontal carousel */
.insta-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.insta-slider .slides {
  display: flex;
  flex-shrink: 0;
}

.insta-slider img {
  width: 250px; /* adjust size of each image */
  height: 250px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--pastel-pink);
}

/* Mobile responsive thumbnails */
@media (max-width: 600px) {
  .insta-slider img {
    width: 150px;
    height: 150px;
  }
}


/* === FADE-IN ANIMATION ON SCROLL === */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
}

footer a {
  color: var(--pastel-pink);
}

footer a:hover {
  color: var(--pastel-lime);
}
