/* ===========================
   CSS RESET
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===========================
   BODY & BASE STYLES
   =========================== */
body {
  font-family: "Impact", "Arial Black", sans-serif;
  margin: 0;
  padding: 0;
  background: #967859;
}

h1,
h2 {
  font-family: "Bungee Inline", sans-serif; /* Sets special font for headings */
  font-weight: 400; /* Sets font weight to normal */
  font-style: normal; /* Ensures text is not italic */
}

/* ===========================
   PAGE LAYOUT CONTAINERS
   =========================== */
.page-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.inner-container {
  background-color: #c9a876;
  padding: 20px;
  display: grid;
  border-radius: 50px;
  border: #967859;
  margin: 50px;
}

/* ===========================
   NAVIGATION BAR
   =========================== */
.top-navigation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 15px 75px;
  background: #3a3a3a;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-button {
  font-family: "Bungee Inline", sans-serif;
  background: #ffffff;
  border: 2px solid #999;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}

.nav-button:hover {
  background: teal;
  border: 2px solid #f5f5dc;
  color: #f5f5dc;
  transform: translateY(-1px);
}

/* ===========================
   MAIN CONTENT AREA
   =========================== */
.main-content {
  padding: 30px 40px 60px;
  position: relative;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
  margin-bottom: 550px;
}

.page-title {
  font-size: 110px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

/* ===========================
   INTRODUCTION SECTION
   =========================== */
.intro-section {
  margin-bottom: 40px;
  position: relative;
}

.intro-text {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 20px;
  max-width: 600px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  right: 80px;
  bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-text {
  font-family: "Bungee Inline", sans-serif;
  font-size: 18px;
  color: #000000;
}

.arrow-down {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===========================
   SECTION DIVIDER
   =========================== */
.section-divider {
  border: none;
  border-top: 3px solid #000000;
  margin: 40px 0 60px 0;
}

/* ===========================
   WORK SECTION
   =========================== */
.work-section {
  margin-bottom: 80px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 30px;
  justify-items: center;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #000000;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ===========================
   CAROUSEL
   =========================== */
.carousel-container {
  width: 100%;
  max-width: 1000px;
  position: relative;
  display: grid;
  grid-template-columns: 60px 100px 1fr 100px 60px;
  align-items: center;
}

.carousel-arrow {
  background: transparent;
  border: 2px solid black;
  border-radius: 50%;
  padding: 1px 1px 1px 3px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.2s;
}

.carousel-arrow:hover {
  transform: scale(1.3);
}

.carousel-arrow.left {
  justify-self: end;
}

.carousel-arrow.right {
  justify-self: start;
}

.carousel-shadow {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  background: linear-gradient(145deg, #e0e0e0, #c0c0c0);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 250px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.85);
}

.carousel-item.left-pos {
  left: 50px;
  opacity: 1;
  transform: scale(0.85);
  z-index: 1;
}

.carousel-item.center-pos {
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 10;
}

.carousel-item.right-pos {
  right: 50px;
  opacity: 1;
  transform: scale(0.85);
  z-index: 1;
}

.carousel-item.hidden {
  opacity: 0;
  pointer-events: none;
}

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

/* Coming Soon Box */
.coming-soon-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f0f0f0, #d8d8d8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.coming-soon-text {
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #4a7ba7;
  transform: scale(1.3);
}

/* ===========================
   COLLECTION BUTTON
   =========================== */
.collection-button {
  font-family: "Bungee Inline", sans-serif;
  background: linear-gradient(to bottom, #e8e8e8, #c8c8c8);
  border: 2px solid #999;
  border-radius: 25px;
  padding: 12px 40px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
  display: inline-block;
}

.collection-button:hover {
  background: teal;
  border: 2px solid #f5f5dc;
  color: #f5f5dc;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ===========================
   TRIANGLE DIVIDERS
   =========================== */
.triangle-divider {
  height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 60px 0;
  position: relative;
  bottom: 90px;
}

/* Left Triangle */
.triangle-left {
  position: relative;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 120px 0px 120px 240px;
  border-color: transparent transparent transparent #3a3a3a;
  transform: rotate(0deg);
  margin: -132px;
  z-index: 2;
}

.big-triangle-left {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 132px 0px 132px 264px;
  border-color: transparent transparent transparent #967859;
  transform: rotate(0deg);
  margin: -144px -12px;
  margin-left: -84px;
  margin-bottom: -12px;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Right Triangle */
.triangle-right {
  position: relative;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 120px 0px 120px 240px;
  border-color: transparent transparent transparent #3a3a3a;
  justify-self: end;
  transform: rotate(180deg);
  margin: -132px;
  z-index: 2;
}

.big-triangle-right {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 132px 0px 132px 264px;
  border-color: transparent transparent transparent #967859;
  transform: rotate(180deg);
  margin: -144px -12px;
  margin-left: -84px;
  margin-bottom: -12px;
  top: 0;
  left: 94%;
  z-index: 1;
}

/* ===========================
   FOOTER SECTION
   =========================== */
.footer-section {
  font-family: "Bungee Inline", sans-serif;
  background-color: #2a3439;
  padding: 35px 40px;
}

.footer-navigation {
  display: grid;
  grid-template-rows: repeat(5, auto);
  gap: 12px;
  max-width: 300px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.footer-link:hover {
  color: teal;
  padding-left: 8px;
}

.arrow {
  font-size: 18px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet - 1200px and below */
@media (max-width: 1200px) {
  .page-title {
    font-size: 90px;
  }
}

/* Tablet - 900px and below */
@media (max-width: 900px) {
  .top-navigation {
    grid-template-columns: repeat(3, 1fr);
    padding: 15px 30px;
  }

  .nav-button {
    font-size: 16px;
  }

  .page-container {
    border-width: 15px;
  }

  .page-title {
    font-size: 70px;
  }

  .page-header {
    margin-bottom: 200px;
  }

  .scroll-indicator {
    right: 40px;
  }

  .section-title {
    font-size: 36px;
  }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
  .top-navigation {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 20px;
    gap: 8px;
  }

  .nav-button {
    font-size: 14px;
    padding: 8px 15px;
  }

  .page-container {
    border-width: 10px;
  }

  .main-content {
    padding: 20px;
  }

  .page-title {
    font-size: 50px;
  }

  .page-header {
    margin-bottom: 150px;
  }

  .intro-text {
    font-size: 18px;
  }

  .scroll-indicator {
    position: static;
    margin-top: 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .carousel-container {
    grid-template-columns: 40px 1fr 40px;
  }

  .carousel-shadow {
    display: none;
  }

  .carousel-item {
    width: 200px;
    height: 300px;
  }

  .carousel-item.left-pos,
  .carousel-item.right-pos {
    display: none;
  }

  .coming-soon-text {
    font-size: 36px;
  }

  .collection-button {
    font-size: 18px;
    padding: 10px 30px;
  }
}
