*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #1A1A1A;
}
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
html::-webkit-scrollbar-track {
  background: #FCFCFC;
  border-radius: 0;
}
html::-webkit-scrollbar-thumb {
  background-color: #D9534F;
  border-radius: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #1A1A1A;
  background-color: #FCFCFC;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .site-title a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

a {
  color: #D9534F;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
  color: #c9302c;
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border-radius: 0;
  cursor: pointer;
  border: none;
}

input[type=range] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100px;
  height: 6px;
  background: #1A1A1A;
  outline: none;
  border-radius: 0;
  vertical-align: middle;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 14px;
  height: 14px;
  background: #D9534F;
  cursor: pointer;
  border-radius: 0;
}
input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #D9534F;
  cursor: pointer;
  border: none;
  border-radius: 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

#background-canvas {
  display: block; /* Or whatever its default display is, e.g., flex, grid */
  /* Add any other existing canvas styles here */
}

#mobile-background-img {
  display: none; /* Hidden by default on larger screens */
  position: fixed; /* Or absolute, depending on desired effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* To cover the entire viewport */
  z-index: -1; /* To ensure it's behind other content, adjust if needed */
}

/* Mobile Styles - Adjust breakpoint as needed */
@media (max-width: 768px) { /* Common breakpoint for mobile devices */
  #background-canvas {
    display: none !important; /* Hide the canvas on mobile */
  }
  #mobile-background-img {
    display: block; /* Show the static image on mobile */
  }
}
#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  /* Ensures it's treated as a block-level element */
}

.main-header {
  background-color: #faf5ed;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1A1A1A;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .main-header .container {
    padding-top: 0.5rem;
  }
}

.header-left-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-title-video {
  width: 38px;
  height: 38px;
  overflow: hidden;
}
.site-title-video canvas {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .site-title-video {
    display: none;
  }
}

.site-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.site-title a:hover, .site-title a:focus {
  color: #D9534F;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1A1A1A;
  padding: 0.4em 0.8em;
  position: relative;
  text-decoration: none;
  border: 1px solid #1A1A1A;
  display: inline-block;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: #D9534F;
  text-decoration: none;
}
.main-nav a:hover::after, .main-nav a:focus::after, .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: calc(100% + 2px);
  height: 2px;
  background-color: #D9534F;
}

.main-content {
  flex-grow: 1;
  padding: 4rem 0;
}
.main-content section {
  margin-bottom: 4rem;
}

.main-footer {
  background-color: #faf5ed;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #1A1A1A;
  margin-top: auto;
  color: #676767;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.about-picture {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #1A1A1A;
  background-color: #fff;
  padding: 23px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .about-picture {
    margin-bottom: 1.5rem;
  }
}

.about-text {
  flex-grow: 1;
  max-width: 65ch;
}

.project-item {
  margin-bottom: 3rem;
  padding-top: 0.75rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  border: 1px solid #1A1A1A;
  background-color: #fff;
}
.project-item h3 {
  margin-top: 0;
  padding-bottom: 0.75rem;
}

.player-btn,
.some-other-btn {
  display: inline-block;
  background-color: #1A1A1A;
  color: #fff;
  border: 1px solid #1A1A1A;
  padding: 0.9em 1.8em;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  min-width: -moz-fit-content;
  min-width: fit-content;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.player-btn::before,
.some-other-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-101%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.player-btn:hover,
.some-other-btn:hover {
  color: #1A1A1A;
  text-decoration: none;
}
.player-btn:hover::before,
.some-other-btn:hover::before {
  transform: translateX(0);
}
.player-btn:focus,
.some-other-btn:focus {
  outline: none;
}

.music-player {
  background-color: #fff;
  border: 1px solid #1A1A1A;
  padding: 1.5rem;
  margin-top: 1rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .player-controls {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }
}

.player-controls #seek-bar {
  flex-grow: 1;
  min-width: 150px;
  height: 6px;
}

.player-controls #volume-bar {
  width: 80px;
  height: 6px;
}
@media (max-width: 768px) {
  .player-controls #volume-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  #volume-btn {
    display: none;
  }
}

#current-time, #duration {
  font-size: 0.9em;
  color: #676767;
  min-width: 3em;
  text-align: center;
}
@media (max-width: 768px) {
  #current-time, #duration {
    display: none;
  }
}

.track-info {
  margin-bottom: 1rem;
  font-size: 0.9em;
  color: #676767;
  min-height: 1.2em;
}
.track-info #current-track-title {
  color: #1A1A1A;
  font-weight: 700;
}

.track-list {
  max-height: 200px;
  overflow-y: auto;
  border-top: 1px solid #1A1A1A;
  padding-top: 1rem;
}
.track-list li {
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #1A1A1A;
  color: #1A1A1A;
  font-size: 0.95em;
}
.track-list li:last-child {
  border-bottom: none;
}
.track-list li:hover {
  background-color: white;
  color: #D9534F;
}
.track-list li.playing {
  background-color: transparent;
  color: #D9534F;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    justify-items: center;
    grid-template-columns: 1fr;
  }
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #1A1A1A;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gumroad-embed {
  margin-top: 2rem;
  border: 1px solid #1A1A1A;
  border-radius: 0;
}
.gumroad-embed iframe {
  display: block;
  width: 100%;
  border: none !important;
  border-radius: 0 !important;
}
.gumroad-embed .gumroad-product-embed > a {
  color: #D9534F;
}

.spotify-embed iframe {
  padding: 0;
}
.spotify-embed iframe iframe {
  display: block;
  border: none;
  border-radius: 0 !important;
  width: 100%;
}

.contact-btn {
  display: inline-block;
  background-color: #1A1A1A;
  color: #fff;
  border: 1px solid #1A1A1A;
  padding: 0.8em 2em;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-101%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.contact-btn:hover {
  color: #1A1A1A;
  text-decoration: none;
}
.contact-btn:hover::before {
  transform: translateX(0);
}
.contact-btn:focus {
  outline: none;
}
@media (hover: none) {
  .contact-btn:hover {
    color: #fff;
  }
  .contact-btn:hover::before {
    transform: translateX(-101%);
  }
}

.social-links-section {
  text-align: center;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-block;
  margin: 0 0.75rem;
}
.social-link img, .social-link svg {
  width: 32px;
  height: 32px;
  vertical-align: left;
}

.contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.contact-modal {
  background-color: #FCFCFC;
  padding: 2rem 2.5rem;
  border: 1px solid #1A1A1A;
  position: relative;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
}
.contact-modal .close-modal {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  font-weight: bold;
  color: #1A1A1A;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.contact-modal .close-modal:hover, .contact-modal .close-modal:focus {
  color: #D9534F;
  outline: none;
}

form#form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
form#form input[type=text],
form#form input[type=email],
form#form textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  background-color: #fff;
  padding: 0.75em 1em;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out;
}
form#form input[type=text]::-moz-placeholder, form#form input[type=email]::-moz-placeholder, form#form textarea::-moz-placeholder {
  color: #8d8d8d;
  opacity: 1;
}
form#form input[type=text]::placeholder,
form#form input[type=email]::placeholder,
form#form textarea::placeholder {
  color: #8d8d8d;
  opacity: 1;
}
form#form input[type=text]:focus,
form#form input[type=email]:focus,
form#form textarea:focus {
  outline: none;
  border-color: #D9534F;
}
form#form textarea {
  min-height: 130px;
  max-height: 500px;
  resize: vertical;
  line-height: 1.5;
}
form#form button[type=submit] {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background-color: #D9534F;
  color: #fff;
  padding: 0.9em 1.75em;
  border: 1px solid #D9534F;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  align-self: center;
  margin-top: 2rem;
}
form#form button[type=submit]:hover, form#form button[type=submit]:focus {
  background-color: #c9302c;
  border-color: #c9302c;
  color: #fff;
  outline: none;
}
form#form #result {
  margin-top: 0.25rem;
  padding: 0.8em 0;
  font-size: 0.95rem;
  text-align: left;
  font-weight: normal;
  line-height: 1.4;
  color: #676767;
}/*# sourceMappingURL=style.css.map */