* {
   box-sizing: border-box;
}


body {
   font-family: 'Saira', sans-serif;
   font-weight: 300;
   min-height: 100vh;
   color: black;
   margin: 0;
   padding: 0;
   background: linear-gradient(180deg, #32508C 0%, #1e2d59 80%, #0f0a3a 100%);
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

/* Header Images */
.home-hero {
   position: relative;
   font-family: "Molle", cursive;
   font-style: italic;
   font-weight: bold;
   color: white;
   margin-top: 0;
}

.home-hero img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   object-position: center top;
   opacity: 0.8;
}

.home-hero::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   pointer-events: none;
   z-index: 5;
}

.song-page header img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   object-position: center;
   opacity: 0.8;
}

.song-page header::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   pointer-events: none;
   z-index: 5;
}

/* Sienna Page Header */
.sienna-page header img {
   object-position: center bottom;
}

.song-page header h1 {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   white-space: nowrap;
   margin: 0;
   padding: 10px;
   color: white;
   text-align: center;
   z-index: 10;
   font-family: 'eurostile-extended', sans-serif;
   letter-spacing: 0.8em;
   opacity: 0.7;
   font-size: 40px;
}

.home-title {
   position: absolute;
   bottom: 12px;
   left: 12px;
   transform: none;
   white-space: nowrap;
   padding: 10px;
   margin: 0;
   z-index: 10;
   font-size: 26px;
   font-family: "Molle", cursive;
   font-style: italic;
   font-weight: bold;
}

/* Water Image Background - Home Page */
.song-hero {
   width: 95%;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 50px;
   opacity: 0.3;
   z-index: 1;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
   object-fit: cover;
}

.water-section {
   position: relative;
   padding: 10px 20px;
   margin: 40px auto;
   max-width: 1400px;
}

.water-section .song-hero {
   height: 1000px;
   top: 0;
}

.water-section p {
   font-size: 17px;
   font-weight: 300;
   max-width: 90%;
   margin-left: auto;
   margin-right: auto;
   margin-top: 20px;
   line-height: 1.8;
   color: white;
   position: relative;
   z-index: 10;
}

/* Water Image Background - Sienna */

.water-section-sienna {
   position: relative;
   padding: 60px 20px;
   margin: 40px auto;
   max-width: 1400px;
}

.water-section-sienna .song-hero {
   height: 500px;
   top: 0;
}

.water-section-sienna p {
   font-size: 17px;
   font-weight: 350;
   max-width: 90%;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.8;
   margin-top: -20px;
   color: white;
   position: relative;
   z-index: 10;
}

/* Water Image Background - Lejos */

.water-section-lejos {
   position: relative;
   padding: 60px 20px;
   margin: 40px auto;
   max-width: 1400px;
}

.water-section-lejos .song-hero {
   height: 550px;
   top: 0;
}

.water-section-lejos p {
   font-size: 17px;
   font-weight: 350;
   max-width: 90%;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.8;
   margin-top: -25px;
   color: white;
   position: relative;
   z-index: 10;
}

/* Water Image Background - Noticed */

.water-section-noticed {
   position: relative;
   padding: 60px 20px;
   margin: 40px auto;
   max-width: 1400px;
}

.water-section-noticed .song-hero {
   height: 500px;
   top: 0;
}

.water-section-noticed p {
   font-size: 17px;
   font-weight: 350;
   max-width: 90%;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.8;
   margin-top: -15px;
   color: white;
   position: relative;
   z-index: 10;
}

/* Nav */
nav {
   background-color: #100A3A;
   padding: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
   font-family: 'eurostile-extended', sans-serif;
}

nav a {
   color: #ffffff;
   text-decoration: none;
   font-size: 18px;
}

.nav-brand {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   font-family: "Molle", cursive;
   font-style: italic;
   font-weight: bold;
   font-size: 20px;
   color: #ffffff;
   text-decoration: none;
   display: block;
}

.nav-center {
   display: none;
}

#mobile-btn {
   background: none;
   border: none;
   color: #ffffff;
   font-size: 24px;
   cursor: pointer;
   transition: transform 0.3s ease;
   z-index: 10;
   display: block;
   margin-left: auto;
   order: 3;
}

#mobile-btn.open {
   transform: rotate(45deg);
}

.song-page nav>a:first-of-type:not(.nav-brand) {
   display: none;
}

.song-page nav .nav-right {
   display: none;
}

.desktop-nav {
   display: none;
}

#mobile-nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #100a3a;
   display: none;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   z-index: 1000;
   font-family: 'eurostile-extended', sans-serif;
}

#mobile-nav.show {
   display: flex;
}

#mobile-nav a {
   color: #ffffff;
   text-decoration: none;
   font-size: 32px;
   margin: 20px 0;
   font-weight: 300;
}

#close-btn {
   position: absolute;
   top: 20px;
   right: 20px;
   background: none;
   border: none;
   color: #ffffff;
   font-size: 36px;
   cursor: pointer;
}

header {
   position: relative;
}

header h1 {
   font-size: 50px;
}

.song-page header h2 {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   white-space: nowrap;
   margin: 0;
   padding: 10px;
   z-index: 10;
}

section {
   padding: 40px 20px;
   margin: 20px 0;
   position: relative;
}

section p {
   line-height: 1.8;
   margin-bottom: 20px;
   font-size: 18px;
   color: white;
   position: relative;
   z-index: 10;
}

section h2 {
   font-size: 28px;
   margin-bottom: 20px;
   color: white;
}

/* Artistic Vision Section */
.artistic-vision-title {
   font-family: 'eurostile-extended', sans-serif;
   text-align: center;
   color: white;
   margin-bottom: 20px;
}

.artistic-vision-wrapper {
   background: rgba(0, 0, 0, 0.25);
   border-radius: 50px;
   padding: 30px;
   position: relative;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.artistic-vision-wrapper p {
   position: relative;
   color: white;
   margin-bottom: 20px;
}

.artistic-vision-wrapper p:last-child {
   margin-bottom: 0;
}

section article {
   margin-bottom: 40px;
   padding: 20px;
}

section article h2,
section article h3 {
   font-family: 'eurostile-extended', sans-serif;
   font-style: normal;
   font-weight: bold;
   font-size: 32px;
   margin-bottom: 20px;
   color: white;
}

section article figure {
   position: relative;
   display: inline-block;
   width: 218px;
   height: 218px;
   border: none;
   padding: 0;
}

section article figure img:first-child {
   position: relative;
   z-index: 2;
   width: 218px;
   height: 218px;
   object-fit: cover;
}

/* card animation for all pages */
.song-page .card-container {
   padding: 0;
   margin-bottom: 20px;
   perspective: 1000px;
}

.song-page .card {
   position: relative;
   width: 100%;
   height: 600px;
   transition: transform 0.6s;
   transform-style: preserve-3d;
   cursor: pointer;
}

.song-page .card-container:hover .card {
   transform: rotateY(180deg);
}

.song-page .card-front,
.song-page .card-back {
   position: absolute;
   width: 100%;
   height: 100%;
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
   border-radius: 50px;
   padding: 0px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.song-page .card-front {
   background-color: #1e2d59;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 20px;
   z-index: 2;
   transform: rotateY(0deg);
}

.song-page .card-front::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.25);
   border-radius: 50px;
   pointer-events: none;
   z-index: 1;
}

.song-page .card-back {
   background-color: #0E135c;
   transform: rotateY(180deg);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 40px;
}

.song-page .card-back::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.25);
   border-radius: 50px;
   pointer-events: none;
   z-index: 1;
}

.song-page .card-front img {
   width: 100%;
   max-width: 350px;
   height: 250px;
   object-fit: cover;
   border-radius: 50px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
   position: relative;
   z-index: 2;
   filter: brightness(0.75);
}

.song-page .card-front blockquote {
   margin: 0;
   padding: 0;
   text-align: center;
   position: relative;
   z-index: 2;
}

.song-page .card-front blockquote p {
   color: white;
   font-family: 'Saira', sans-serif;
   font-size: 18px;
   line-height: 1.6;
   margin: 5px 0;
}


.song-page .card-back p {
   color: white;
   font-size: 18px;
   line-height: 1.8;
   margin: 0;
   text-align: center;
   position: relative;
   z-index: 2;
}

/* images (before cards, all song pages) */
.song-page section article>img {
   border-radius: 50px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
   position: relative;
   width: 100%;
   height: 600px;
   object-fit: cover;
   margin-bottom: 20px;
   opacity: 0.8;
   filter: brightness(0.7);
}

.song-page section article>img::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.25);
   border-radius: 50px;
   pointer-events: none;
   z-index: 1;
}

.song-page .final-text-section {
   background-color: rgba(50, 80, 140, 0.65);
   border-radius: 50px;
   padding: 40px 20px;
   margin: 30px 20px;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
   position: relative;
}

.song-page .final-text-section p {
   color: white;
   font-size: 18px;
   line-height: 1.8;
   margin: 0;
   position: relative;
   z-index: 10;
}

/* Video */
video {
   width: 100%;
   display: block;
   margin: 20px 0;
   border-radius: 50px;
   position: relative;
   filter: brightness(0.7) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

video::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   pointer-events: none;
   border-radius: 50px;
}

blockquote {
   margin: 20px 0;
}

blockquote p {
   margin: 5px 0;
   font-size: 14px;
}

.artist-statement {
   position: relative;
   padding: 0;
   margin: 0;
}

.artist-statement h2 {
   font-family: 'eurostile-extended', sans-serif;
   text-align: center;
   color: white;
   margin-bottom: 30px;
   padding: 0 20px;
}

.artist-wrapper {
   position: relative;
   width: 100%;
}

.artist-bg {
   width: 100%;
   height: auto;
   display: block;
   opacity: 0.75;
   filter: brightness(0.5);
}

.artist-overlay {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 90%;
   max-width: 900px;
   background: linear-gradient(135deg, rgba(16, 10, 58, 0.3), rgba(50, 80, 140, 0.4));
   padding: 10px;
   border-radius: 30px;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.artist-overlay p {
   padding-top: 10px;
   margin-bottom: 5px;
   font-size: 14px;
   line-height: 1.6;
   color: white;
}

figure {
   position: relative;
   width: 218px;
   height: 218px;
}

figure .cover {
   position: relative;
   z-index: 3;
   width: 218px;
   height: 218px;
   object-fit: cover;
   filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
   transition: transform 0.3s ease;
}

figure .vinyl {
   position: absolute;
   top: 50%;
   left: 40%;
   transform: translateY(-50%);
   width: 218px;
   height: 218px;
   z-index: 1;
   transition: transform 0.3s ease;
}

@keyframes spin {
   from {
      transform: translateY(-50%) rotate(0deg);
   }

   to {
      transform: translateY(-50%) rotate(360deg);
   }
}

section.view-next {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 40px;
   padding: 40px 20px;
   border-radius: 50px;
   margin: 30px 20px;
   max-width: 100%;
   background-color: rgba(2, 12, 32, 0.65);
}

section.view-next>h2 {
   align-self: flex-start;
   margin-left: 0;
   margin-top: -10px;
}

section.view-next .next-row {
   display: flex;
   flex-direction: column;
   gap: 40px;
   width: 100%;
   align-items: center;
}

section.view-next article {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
}

section.view-next article h2,
section.view-next article h3 {
   font-family: 'eurostile-extended', sans-serif;
   font-style: normal;
   font-size: 24px;
   margin-bottom: 20px;
   color: white;
   font-weight: bold;
}

section.view-next article figure {
   transition: transform 0.3s ease;
}

/* Hover Effects */
section.view-next article:hover figure {
   transform: translateY(-10px);
}

section.view-next article:hover figure .cover {
   transform: scale(1.05);
}

section.view-next article:hover figure .vinyl {
   animation: spin 3s linear infinite;
}

/* Footer */
footer {
   padding: 0;
   text-align: center;
   color: white;
}

footer p {
   margin: 10px 0;
   font-size: 14px;
}

footer p:first-child {
   padding: 15px;
   background: rgba(50, 80, 140, 0.6);
   display: block;
   width: 100%;
   margin: 0;
}

footer p:last-child {
   padding: 20px;
}

footer a {
   text-decoration: none;
   color: white;
}

/* TABLET STYLES */

@media (min-width: 768px) and (max-width: 1023px) {

   .nav-brand {
      font-size: 26px;
   }

   .song-page header h1 {
      font-size: 55px;
   }

   .water-section {
      padding: 80px 40px;
   }
   
   .water-section p {
      font-size: 18px;
      max-width: 85%;
   }
   
   .water-section-sienna {
      padding: 80px 40px;
   }
   
   .water-section-sienna .song-hero {
      height: 400px;
   }
   
   .water-section-sienna p {
      font-size: 18px;
      max-width: 85%;
   }
   
   .water-section-lejos {
      padding: 80px 40px;
   }
   
   .water-section-lejos .song-hero {
      height: 450px;
   }
   
   .water-section-lejos p {
      font-size: 18px;
      max-width: 85%;
   }
   
   .water-section-noticed {
      padding: 80px 40px;
   }
   
   .water-section-noticed .song-hero {
      height: 450px;
   }
   
   .water-section-noticed p {
      font-size: 18px;
      max-width: 85%;
   }

   section.view-next {
      max-width: 90%;
      padding: 50px 40px;
      margin: 30px auto;
   }

   section.view-next .next-row {
      flex-direction: row;
      justify-content: center;
      gap: 60px;
   }

   .water-section p {
      max-width: 600px;
   }

   .artist-overlay p {
      font-size: 18px;
   }
}

/* DESKTOP STYLES */

@media (min-width: 1024px) {

   .home-hero img {
      height: 861px;
      object-fit: cover;
      object-position: center 30%;
   }

   .song-page header img {
      height: 861px;
      object-fit: cover;
      object-position: center;
   }

   .sienna-page header img {
      object-position: center bottom;
   }

   .home-title {
      font-size: 60px;
      bottom: 20px;
      left: 20px;
   }

   /* Header */
   header h1 {
      font-size: 90px;
   }

   .song-page header h1 {
      font-size: 70px;
      letter-spacing: 0.4em;
      opacity: 0.7;
   }

   header h2 {
      font-size: 36px;
   }

   .song-hero {
      width: 90%;
      height: 450px;
      transform: translateX(-50%);
   }

   .song-page .song-hero {
      height: 350px;
   }

   /* Water Styles */
   
   /* Home Page */
   .water-section {
      padding: 20px 30px;
      position: relative;
      max-width: 1500px;
      margin: 40px auto;
   }
   
   .water-section .song-hero {
      height: 600px;
      width: 90%;
      top: 0;
   }
   
   .water-section p {
      font-size: 19px;
      max-width: 80%;
      line-height: 2;
      position: relative;
      z-index: 10;
   }
   
   /* Sienna Page */
   .water-section-sienna {
      padding: 100px 60px;
      position: relative;
      max-width: 1400px;
      margin: 40px auto;
   }
   
   .water-section-sienna .song-hero {
      height: 400px;
      width: 90%;
      top: 0;
   }
   
   .water-section-sienna p {
      font-size: 19px;
      max-width: 80%;
      line-height: 2;
      position: relative;
      z-index: 10;
   }
   
   /* Lejos Page */
   .water-section-lejos {
      padding: 100px 60px;
      position: relative;
      max-width: 1400px;
      margin: 40px auto;
   }
   
   .water-section-lejos .song-hero {
      height: 400px;
      width: 90%;
      top: 0;
   }
   
   .water-section-lejos p {
      font-size: 19px;
      max-width: 80%;
      line-height: 2;
      margin-top: -35px;
      position: relative;
      z-index: 10;
   }
   
   /* Noticed Page */
   .water-section-noticed {
      padding: 100px 60px;
      position: relative;
      max-width: 1400px;
      margin: 40px auto;
   }
   
   .water-section-noticed .song-hero {
      height: 400px;
      width: 90%;
      top: 0;
   }
   
   .water-section-noticed p {
      font-size: 19px;
      max-width: 80%;
      line-height: 2;
      margin-top: -30px;
      position: relative;
      z-index: 10;
   }

   /* Sections */
   section {
      padding: 60px 40px;
   }

   #mobile-btn {
      display: none;
   }

   nav {
      padding: 35px 20px;
      font-family: 'eurostile-extended', sans-serif;
   }

   nav a {
      font-size: 24px;
   }

   .nav-brand {
      font-size: 32px;
   }

   .song-page nav>a:first-of-type:not(.nav-brand) {
      display: block;
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
   }

   .song-page nav .nav-right {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
   }

   section article {
      display: grid;
      grid-template-columns: 1fr 0.8fr;
      align-items: start;
      gap: 40px;
   }

   section article .card-container,
   section article blockquote,
   section article p {
      grid-column: 1;
   }

   section article img,
   section article figure {
      grid-column: 2;
      width: 100%;
      max-width: none;
   }

   section article figure img {
      width: 100%;
      height: auto;
   }

   .song-page section article {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      gap: 20px;
      padding: 20px 40px;
      max-width: 1400px;
      margin: 0 auto;
   }

   .song-page section article .card-container {
      grid-column: 1;
      grid-row: 1;
      padding: 0;
   }

   .song-page section article>img {
      grid-column: 2;
      grid-row: 1;
      width: 100%;
      height: 600px;
      object-fit: cover;
   }

   .song-page .card {
      height: 600px;
      width: 100%;
   }

   .song-page .card-front img {
      max-width: 350px;
      height: 250px;
   }

   .song-page .card-front blockquote p {
      font-size: 15px;
      line-height: 1.5;
   }

   .song-page .card-back p {
      font-size: 16px;
      line-height: 1.7;
   }

   section.view-next {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 80px;
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
      padding: 60px 20px;
      border-radius: 50px;
   }

   section.view-next>h2 {
      position: absolute;
      left: 60px;
      align-self: flex-start;
      margin-top: 0;
   }

   section.view-next .next-row {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 80px;
      margin-top: 30px;
   }

   section.view-next article {
      display: flex;
      flex-direction: column;
      align-items: center;
      border: none;
      padding: 0;
      max-width: 300px;
      width: 300px;
   }

   section.view-next article h3,
   section.view-next article h2 {
      text-align: center;
      margin-bottom: 15px;
      font-size: 28px;
      font-family: 'eurostile-extended', sans-serif;
      font-weight: bold;
   }

   section.view-next article figure {
      position: relative;
      width: 218px;
      height: 218px;
   }

   section.view-next article figure img:first-child {
      position: relative;
      z-index: 2;
      width: 218px;
      height: 218px;
      object-fit: cover;
   }

   section.view-next article figure img:last-child {
      position: absolute;
      right: -70px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
      width: 218px;
      height: 218px;
   }

   .artist-overlay {
      width: 85%;
      padding: 20px;
      max-width: 1000px;
   }

   .artist-overlay p {
      font-size: 25px;
      line-height: 1.8;
   }

   .artistic-vision-wrapper {
      padding: 40px;
   }

   .song-page .final-text-section {
      padding: 60px 20px;
      margin: 60px 40px;
   }

   .song-page .final-text-section p {
      font-size: 20px;
   }
}

@media (max-width: 767px) {

   /* SIENNA */
   .sienna-page header h1 {
      font-size: 32px;
      letter-spacing: 0.35em;
      top: 52%;
   }

   /* LEJOS DE TI */
   .lejos-page header h1 {
      font-size: 26px;
      letter-spacing: 0.25em;
      line-height: 1.2;
      top: 52%;
   }

   /* NO ONE NOTICED */
   .noticed-page header h1 {
      font-size: 22px;
      letter-spacing: 0.20em;
      line-height: 1.1;
      top: 54%;
   }
}

@media (min-width: 768px) and (max-width: 1023px) {

   .sienna-page header h1 {
      font-size: 48px;
      letter-spacing: 0.45em;
   }

   .lejos-page header h1 {
      font-size: 38px;
      letter-spacing: 0.35em;
   }

   .noticed-page header h1 {
      font-size: 33px;
      letter-spacing: 0.30em;
   }
}