/* Boomex Style Redesign */

:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #ffffff;
  --font-main: 'Montserrat', sans-serif;
}

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

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

/* Custom Cursor */
.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease;
  mix-blend-mode: difference;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
}

.menu-btn {
  font-weight: 700;
  text-transform: uppercase;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  position: relative;
}

.hero-content {
  text-align: center;
  width: 100%;
}

.hero-sub {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-sub .x {
  color: #666;
  margin: 0 10px;
}

.hero-title {
  font-size: 12vw;
  line-height: 0.85;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-footer {
  position: absolute;
  bottom: 40px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

/* Marquee */
.marquee-section {
  padding: 100px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  overflow: hidden;
  background: #000;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 50px;
  -webkit-text-stroke: 1px white;
  color: transparent;
  transition: color 0.3s;
}

.marquee-inner span:hover {
  color: white;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Sections General */
.container {
  padding: 0 50px;
  max-width: 1600px;
  margin: 0 auto;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  margin-bottom: 60px;
  display: block;
}

/* About */
.about-section {
  padding: 150px 0;
}

.about-text {
  font-size: 4vw;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 90%;
}

/* Projects */
.projects-section {
  padding: 100px 0;
}

.project-item {
  border-top: 1px solid #333;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  align-items: center;
  transition: background 0.3s;
}

.project-item:hover {
  background: #111;
}

.project-info h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 14px;
  color: #888;
}

.project-image {
  height: 300px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.project-item:hover .project-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-link {
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

/* Experience */
.experience-section {
  padding: 100px 0;
}

.exp-list {
  list-style: none;
}

.exp-item {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #333;
  font-size: 24px;
  font-weight: 700;
  transition: color 0.3s;
}

.exp-item:hover {
  color: #888;
}

/* Footer */
.footer {
  padding: 150px 0 50px;
  background: #fff;
  color: #000;
}

.footer-cta h2 {
  font-size: 15vw;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}

.email-link {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
}

.socials a {
  margin-right: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 18vw;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .project-image {
    opacity: 1;
    transform: none;
    height: 200px;
    width: 100%;
  }

  .project-link {
    text-align: center;
  }

  .exp-item {
    font-size: 16px;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  body,
  a {
    cursor: auto;
  }
}