* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bitcount Prop Single", system-ui;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: rgba(217, 119, 6, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 119, 6, 0.8);
}

/* ============= NAVIGATION ============= */
.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #d97706;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #d97706;
}

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

.social-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.social-link:hover {
  color: #d97706;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .nav-social {
    display: none;
  }
}

/* ============= HERO SECTION ============= */
.hero {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-logo {
  animation: float-up 1s ease-out forwards;
}

.hero-logo h1 {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-divider {
  height: 4px;
  width: 96px;
  background-color: #d97706;
  margin: 1rem auto 0;
}

.hero-tag {
  display: inline-block;

  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  animation: float-up 1s ease-out 0.2s forwards;
  opacity: 0;
}

.scroll-btn {

  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 0.75rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.chevron-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* ============= ANIMATIONS ============= */
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slide-in-left 1s ease-out forwards;
}

.animate-right {
  animation: slide-in-right 1s ease-out forwards;
}

/* ============= ALBUM SECTIONS ============= */
#albums {
  background-color: #000000;
}

.album-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%);
}

.album-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.album-reverse {
  flex-direction: row-reverse;
}

.album-content {
  flex: 1;
  opacity: 0;
}

.album-section.visible .album-content {
  animation: slide-in-left 1s ease-out forwards;
}

.album-reverse.visible .album-content {
  animation: slide-in-right 1s ease-out forwards;
}

.album-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  color: #ffffff;
}

.album-artist {
  font-size: 1.25rem;
  color: #d97706;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.album-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(71, 2, 56, 0.4);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #d97706;
  color: #d97706;
  background: rgba(217, 119, 6, 0.1);
}

.album-cover {
  flex: 0 0 auto;
  opacity: 0;
}

.album-section.visible .album-cover {
  animation: slide-in-right 1s ease-out forwards;
}

.album-reverse.visible .album-cover {
  animation: slide-in-left 1s ease-out forwards;
}

.album-cover img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .album-container {
    flex-direction: column !important;
    gap: 2rem;
  }

  .album-reverse {
    flex-direction: column;
  }

  .album-title {
    font-size: 2.5rem;
  }

  .album-cover img {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .album-title {
    font-size: 2rem;
  }

  .album-cover img {
    width: 300px;
    height: 300px;
  }

  .album-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============= CONTACT SECTION ============= */
.contact {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.contact-content-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}

.contact-left {
  flex: 1;
  max-width: 600px;
}

.contact-right {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-right iframe {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.contact-right iframe:hover {
  transform: translateY(-5px);
}

.contact-container h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #ffffff;
}

.contact-container>p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-form button {
  padding: 0.875rem 2.5rem;
}

.contact-socials {
  margin-bottom: 2rem;
}

.contact-socials h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.socials-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #d97706;
  color: #000000;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.contact-email {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-email a {
  color: #d97706;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: #f59e0b;
}

/* ============= FOOTER ============= */
.footer {
  background-color: #050505;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(217, 119, 6, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-logo h1 {
    font-size: 3.5rem;
  }

  .floating-nav {
    padding: 1rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .contact-container h2 {
    font-size: 2rem;
  }

  .contact-form {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form button {
    width: 100%;
  }

  .contact-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-container {
    text-align: center;
  }
}