/* ===== RESET & BASE STYLES ===== */
* {
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

body::-webkit-scrollbar {
  display: none;
}

::selection {
  background: #ff8d8d;
  color: #fff;
}

::-moz-selection {
  background: #ff8d8d;
  color: #fff;
}

/* ===== FONTS ===== */
@font-face {
  font-family: "Lazydog";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/Lazydog.woff") format("woff");
}

/* ===== HTML & BODY ===== */
html,
html body {
  min-height: 100%;
}

html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Sour Gummy", sans-serif;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-size-adjust: none;
  background-color: #141715;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  display: block;
  position: relative;
  justify-content: center;
  cursor: url("cursor.png"), auto;
}

/* ===== INTERACTIVE ELEMENTS ===== */
button {
  cursor: url("cursor-p.png"), pointer;
  background: none;
}

button:disabled {
  cursor: not-allowed;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: url("cursor-p.png"), pointer;
}

iframe {
  border: 0;
}

/* ===== MAIN SECTION ===== */
#main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("https://res.cloudinary.com/dsdg8ke2n/image/upload/v1754072734/image_3_1_iaqhha.jpg");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  min-height: 600px;
  width: 100%;
  margin: 0;
  padding: 100px 120px 160px 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  will-change: background-image;
}

@media (max-width: 840px) {
  #main {
    background-position: right 80% bottom 80%;
  }
}

@media (min-width: 1355px) {
  #main {
    background-position: right 30% bottom 55%;
  }
}

#main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("assets/break.svg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 2;
}

.main.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.main.logo {
  width: 280px;
  height: auto;
  user-select: none;
}

.main.description {
  text-align: center;
  font-size: 18px;
  max-width: 500px;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.address {
  font-size: 18px;
  font-weight: 600;
  color: #141715;
  padding: 12px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #141715;
  border-right-width: 4px;
  border-bottom-width: 4px;
  text-transform: uppercase;
  transition: all 0.2s ease, color 0.2s ease;
  cursor: url("cursor-p.png"), pointer;
  user-select: none;

  &:hover {
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(-1px);
  }
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.socials.square {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url("cursor-p.png"), pointer;
  border: 2px solid #141715;
  border-right-width: 4px;
  border-bottom-width: 4px;
  transition: all 0.2s ease;
  transform: rotate(-4deg);

  &:hover {
    transform: translateY(-2px);
    transform: rotate(0deg);
    scale: 1.05;
  }

  &:active {
    transform: translateY(-1px);
    scale: 1.025;
  }
}

.socials a:nth-child(1) .socials.square {
  transform: rotate(-4deg);
}

.socials a:nth-child(2) .socials.square {
  transform: rotate(4deg);
}

.socials a:nth-child(3) .socials.square {
  transform: rotate(-4deg);
}

.socials a:nth-child(4) .socials.square {
  transform: rotate(4deg);
}

.socials a:nth-child(1) .socials.square:hover {
  transform: translateY(-2px) rotate(0deg) scale(1.025);
}

.socials a:nth-child(2) .socials.square:hover {
  transform: translateY(-2px) rotate(0deg) scale(1.025);
}

.socials a:nth-child(3) .socials.square:hover {
  transform: translateY(-2px) rotate(0deg) scale(1.025);
}

.socials a:nth-child(4) .socials.square:hover {
  transform: translateY(-2px) rotate(0deg) scale(1.1);
}

.socials.icon {
  width: 32px;
  height: 32px;
}

/* ===== ABOUT SECTION ===== */
#about {
  background-image: url("../res.cloudinary.com/dliqaq40z/image/upload/v1753609285/pattern_fupftu.png");
  background-repeat: repeat;
  background-size: 250px 250px;
  margin: 0;
  min-height: 300px;
  width: 100%;
  margin: 0;
  padding: 80px 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #ffffff 0%, #cecece 50%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}

.about.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.about.title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #141715;
  text-transform: uppercase;
  font-family: "Lazydog", sans-serif;
  letter-spacing: 0px;
  line-height: 1.1;
}

.about.description {
  text-align: center;
  font-size: 18px;
  max-width: 500px;
  color: #141715;
  max-width: 500px;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

.button-m {
  font-size: 18px;
  font-weight: 600;
  color: #141715;
  padding: 12px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #141715;
  border-right-width: 4px;
  border-bottom-width: 4px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: url("cursor-p.png"), pointer;
  user-select: none;

  &:hover {
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(-1px);
  }
}

/* ===== IMAGE CAROUSEL ===== */
.image-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  overflow: visible;
  position: relative;
  width: 100%;
  user-select: none;
}

.image-row-inner {
  display: flex;
  gap: 20px;
  animation: marquee 120s linear infinite;
  width: max-content;
}

.image-row-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-33.333% - 10px));
  }
}

.row-img {
  width: 216px;
  height: 162px;
  object-fit: cover;
  border-radius: 8px;
  border-radius: 12px;
  border: 2px solid #141715;
  background-color: #141715;
  border-right-width: 4px;
  border-bottom-width: 4px;
  transition: all 0.3s ease;
  cursor: url("cursor-p.png"), pointer;
  flex-shrink: 0;
  rotate: 0deg;
  will-change: transform;
}

.row-img:nth-child(even) {
  transform: rotate(-1deg);
}

.row-img:nth-child(odd) {
  transform: rotate(1deg);
}

.row-img:hover {
  transform: translateY(-2px) scale(1.1) rotate(1deg);
}

.image-row:hover .row-img:not(:hover) {
  opacity: 0.4;
}

/* ===== MARQUEE TAPE ===== */
.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee.tape {
  background-color: #141715;
  overflow: hidden;
  padding: 16px 0;
}

.marquee.icon {
  width: 36px;
  object-fit: contain;
  margin: 0 12px;
  flex-shrink: 0;
  transition: all 0.2s ease;

  &:hover {
    transform: scale(1.1) rotate(4deg);
  }
}

.marquee.content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  width: max-content;
}

.marquee.content span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 20px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* ===== COMMUNITY SECTION ===== */
#community {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("https://res.cloudinary.com/dsdg8ke2n/image/upload/v1754072555/image_1_rpc2gt.jpg");
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0;
  padding: 80px 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.community.title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Lazydog", sans-serif;
  letter-spacing: 0px;
  line-height: 1.1;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.community.description {
  text-align: center;
  font-size: 18px;
  max-width: 500px;
  color: #ffffff;
  max-width: 500px;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.community.video {
  width: 640px;
  height: auto;
  border-radius: 16px;
  border: 2px solid #141715;
  border-right-width: 4px;
  border-bottom-width: 4px;
  background-color: #000000;
}

/* ===== FOOTER ===== */
.footer.text {
  padding: 24px 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #ffffff40;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 900px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .about.title {
    font-size: 28px;
  }
  .about.description {
    max-width: 380px;
    font-size: 16px;
  }
  .row-img {
    width: 160px;
    height: 120px;
  }
  .main.description {
    max-width: 380px;
    font-size: 16px;
  }
  .community.video {
    width: 320px;
  }
}
