/* ============================= */
/*         GLOBAL RESET          */
/* ============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant Garamond", serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

/* ============================= */
/*            NAVBAR             */
/* ============================= */

.navbar {
  width: 100%;
  height: 70px;
  background: #000;
  border-bottom: 2px solid #FFD700; /* Professional Gold */

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

/* NEW — LOGO + TITLE GROUP */
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* NEW — CIRCULAR LOGO */
.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* ============================= */
/*         HERO SECTION          */
/* ============================= */

.hero-section {
  width: 100%;
  height: 65vh;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  background: #FFD700;
  z-index: 5;
}

.hero-section::before {
  left: 0;
  border-radius: 0 80px 80px 0;
}

.hero-section::after {
  right: 0;
  border-radius: 80px 0 0 80px;
}

.hero-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* ============================= */
/*        FUTURE SECTION         */
/* ============================= */

.future-section {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
}

.future-section h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

/* ============================= */
/*      BIG RECTANGULAR BOX      */
/* ============================= */

.big-box-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: #1a1a1a;
}

.big-box {
  background: #fff;
  color: #000;
  width: 90%;
  max-width: 1000px;
  height: 450px;
  border-radius: 30px;
  border: 5px solid #FFD700;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  padding: 40px;
  text-align: center;
}

.big-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ============================= */
/*         CAROUSEL SECTION      */
/* ============================= */

.carousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.carousel {
  position: relative;
  width: 900px;
  max-width: 90%;
  height: 350px;
  margin: 0 auto;
  perspective: 1200px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  position: absolute;
  width: 700px;
  max-width: 80%;
  height: 350px;

  border-radius: 18px;
  overflow: hidden;
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 3px solid transparent;

  opacity: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  border-color: #ffffff77;
}

/* ============================= */
/*            ARROWS             */
/* ============================= */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;

  padding: 8px;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel:hover .arrow {
  opacity: 1;
}

.arrow.left {
  left: -160px;
}

.arrow.right {
  right: -160px;
}

/* ============================= */
/*             FOOTER            */
/* ============================= */

footer {
  text-align: center;
  padding: 30px;
  background: #FFD700;
  color: #000;
}

/* ============================= */
/*         RESPONSIVENESS        */
/* ============================= */

@media (max-width: 768px) {
  .carousel {
    height: 250px;
  }

  .slide {
    width: 90%;
    height: 250px;
  }

  .arrow {
    font-size: 2rem;
  }

  .arrow.left {
    left: -40px;
  }

  .arrow.right {
    right: -40px;
  }
}
