* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 20px;
  z-index: 10;
  background: transparent;
}

.header .left h1 {
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.header .center {
  text-align: center;
}

.view-toggle {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.5;
  margin: 0 4px;
}

.view-toggle.active {
  opacity: 1;
  font-weight: bold;
}

.about-btn {
  cursor: pointer;
  font-size: 14px;
}

/* MAIN (HOME) */
.main {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery {
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  flex-grow: 1;
  align-content:center
}

.gallery-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 20px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  height: 250px;
  width: auto;
  border-radius: 6px;
  user-select: none;
}

/* BOTTOM TITLE */
.bottom-title {
  text-align: center;
  margin-bottom: 40px;
}

.big-name {
  font-size: 8vw;
  font-weight: 800;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition: 0.3s;
}

.big-name:hover {
  color: #999;
}

/* ABOUT SECTION */
.about {
  height: 100vh;
  padding: 100px 20px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  max-width: 700px;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
