/*===================
   MAIN STYLESHEET
====================*/
/*===================
      VARIABLES
====================*/
/*===================
        FONTS
====================*/
/* Inter - Regular (400) */
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Inter - Medium (500) */
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Inter - SemiBold (600) */
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Inter - Bold (700) */
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*===================
        GLOBAL
====================*/
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  padding-top: 70px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #4f349f;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 768px) {
  .section-container {
    padding: 2rem 1.5rem;
  }
}

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }
}

/*===================
    HEADER / NAV
====================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #4f349f;
  z-index: 1000;
  transition: top 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 70px;
  padding: 0 1.5rem;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}
.site-logo img {
  height: 60px;
  display: block;
}

/* Instagram social link in navbar */
.nav-social {
  margin-left: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .nav-social {
    margin-left: auto;
    margin-right: 1rem;
  }
}
.nav-social img {
  height: 30px;
  width: 30px;
  display: block;
}
@media (max-width: 767px) {
  .nav-social img {
    height: 28px;
    width: 28px;
  }
}
.nav-social:hover {
  transform: scale(1.15);
}

/* Mobile */
.nav-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}
@media (max-width: 767px) {
  .nav-toggle {
    margin-left: 1rem;
  }
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 250px;
  background-color: #4f349f;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1050;
}
.nav-list.is-open {
  transform: translateX(0);
}
.nav-list li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease;
}
.nav-list li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Desktop */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav-list {
    position: static;
    transform: none;
    flex-direction: row;
    margin-left: auto;
    height: auto;
    width: auto;
    background: transparent;
    padding-top: 0;
    gap: 0.3rem;
  }
  .nav-list li a {
    border: none;
    padding: 0 1rem;
  }
  .nav-list li a:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
  }
}
/*===================
       HERO
====================*/
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  background-image: url("../images/thelook_by_domdommartin.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 175px;
  max-width: 800px;
  padding: 1rem;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
.hero-content p {
  margin-top: 80px;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero-content p {
    font-size: 1rem;
  }
}

.hero-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4rem;
  margin-top: 100px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-links img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}
.hero-links img:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .hero-links img {
    width: 50px;
  }
}
@media (max-width: 480px) {
  .hero-links img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .hero-links {
    gap: 1rem;
  }
}

/*===================
       ABOUT
====================*/
.about-section {
  background: linear-gradient(135deg, #4f349f, #7965b7, #b9aed9);
  background-size: 200% 200%;
  animation: gradientShift 25s ease infinite;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-content h2 {
  color: #fff;
}
.about-content .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1.5rem;
}
.about-content .about-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-content .about-text p {
    font-size: 1rem;
  }
}
.about-content .about-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.about-content .about-text a:hover {
  opacity: 0.8;
}

/*===================
  HORIZONTAL SCROLL GALLERY
====================*/
.gallery-section {
  background: linear-gradient(135deg, #5ef95e, #78ff77, #38fb39);
  background-size: 200% 200%;
  animation: gradientShift 30s ease infinite;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .gallery-wrapper {
    gap: 1rem;
  }
}

.gallery-arrow {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow span {
  display: block;
  margin-top: -8px;
}
.gallery-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
.gallery-arrow:active {
  transform: scale(0.95);
}
@media (max-width: 480px) {
  .gallery-arrow {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
  }
}

.gallery-scroll {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}
.gallery-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.gallery-item {
  flex: 0 0 auto;
  width: 350px;
}
@media (max-width: 768px) {
  .gallery-item {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .gallery-item {
    width: 250px;
  }
}
.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .gallery-item img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .gallery-item img {
    height: 250px;
    border-radius: 8px;
  }
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/*===================
       FOOTER
====================*/
.site-footer {
  background-color: #4f349f;
  color: #fff;
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-content p {
  margin: 0.5rem 0;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .footer-content p {
    font-size: 0.9rem;
  }
}
.footer-content p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-content p a:hover {
  color: #38fb39;
  text-decoration: underline;
}
.footer-content .footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0 0 0;
}
@media (max-width: 480px) {
  .footer-content .footer-copy {
    font-size: 0.85rem;
  }
}

/*===================
       BUTTONS
====================*/
.btn-download,
.btn-more,
.btn-submit-comment {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #4f349f;
  color: #fff;
  text-decoration: none;
  border: 2px solid #4f349f;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.btn-download:hover,
.btn-more:hover,
.btn-submit-comment:hover {
  background-color: #3a2675;
  border-color: #3a2675;
  transform: translateY(-2px);
}
.btn-download:active,
.btn-more:active,
.btn-submit-comment:active {
  transform: translateY(0);
}

.btn-more {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .btn-more {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-submit-comment {
  margin-top: 1rem;
}

/*===================
    MUSIC PLAYER
====================*/
.music-section {
  background: linear-gradient(135deg, #7965b7, #b9aed9, #d3cde7);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
}

.music-track {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.music-track:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.track-info {
  margin-bottom: 1.5rem;
}
.track-info .track-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #111;
}
.track-info .track-meta {
  font-size: 0.7rem;
  color: #666;
  margin: 0;
}

.track-player {
  margin-bottom: 1.5rem;
}
.track-player audio {
  width: 100%;
  height: 40px;
  border-radius: 4px;
}
.track-player audio::-webkit-media-controls-panel {
  background-color: #f9f9f9;
}
.track-player audio::-webkit-media-controls-playback-speed-button {
  display: none;
}
.track-player audio::-webkit-media-controls-playback-speed-menu {
  display: none;
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.play-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.play-count .play-icon {
  font-size: 0.8rem;
}
.play-count .count {
  font-weight: 600;
  color: #111;
}

.more-music {
  display: none;
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
}

.music-library-section {
  padding-top: calc(70px + 2rem);
  min-height: 100vh;
  background: linear-gradient(135deg, #7965b7, #b9aed9, #d3cde7);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
}
.music-library-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}
@media (max-width: 768px) {
  .music-library-section h1 {
    font-size: 2.5rem;
  }
}
.music-library-section .library-intro {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 3rem;
}

.music-track-full {
  background-color: #fff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .music-track-full {
    padding: 2rem;
  }
}
.music-track-full .track-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.music-track-full .track-header .track-info {
  flex: 1;
}
.music-track-full .track-header .track-info .track-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .music-track-full .track-header .track-info .track-title {
    font-size: 1.6rem;
  }
}
.music-track-full .track-header .track-stats {
  flex-shrink: 0;
}
.music-track-full .track-description {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  color: #666;
  line-height: 1.6;
}

.track-comments {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}
.track-comments h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #4f349f;
}
.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #999;
}
.comment-form textarea {
  resize: vertical;
  min-height: 80px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}
.comment .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.comment .comment-header .comment-author {
  font-weight: 600;
  color: #111;
}
.comment .comment-header .comment-date {
  font-size: 0.85rem;
  color: #666;
}
.comment .comment-text {
  color: #111;
  line-height: 1.5;
  margin: 0;
}

.no-comments {
  text-align: center;
  color: #666;
  padding: 2rem;
  font-style: italic;
}

/*# sourceMappingURL=main.css.map */
