/* ========================= */
/* GLOBAL SETTINGS */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d;
  color: white;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: white;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.logo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.portfolio-btn,
.instagram-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.portfolio-btn:hover,
.instagram-btn:hover {
  background: #d4af37;
  color: black;
}


/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    url('../images/graduation/graduation-hero.jpg');

  background-size: cover;
  background-position: center 1%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  overflow: hidden;
}

.hero-content {
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  display: block;
  color: #d4af37;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.8;
}


/* ========================= */
/* CATEGORY SECTION */
/* ========================= */

.categories {
  width: 100%;
  padding: 100px 6%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  height: 420px;

  overflow: hidden;
  border-radius: 28px;

  transition: 0.4s ease;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

/* Graduation */
.graduation-img {
  object-position: center 20%;
}

/* Events */
.events-img {
  object-position: center 20%;
}

/* Conference */
.conference-img {
  object-position: center 80%;
}

/* Private */
.private-img {
  object-position: center 45%;
}

.card-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.2)
    );
}

.card-text {
  position: absolute;
  bottom: 30px;
  left: 30px;

  z-index: 2;
}

.card-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover {
  transform: translateY(-8px);
}


/* ========================= */
/* FLOATING CART */
/* ========================= */

.floating-cart {
  position: fixed;
  bottom: 25px;
  right: 25px;

  padding: 15px 22px;

  border: none;
  border-radius: 999px;

  background: #d4af37;
  color: black;

  font-weight: 600;
  font-size: 0.95rem;

  cursor: pointer;

  z-index: 1000;

  transition: 0.3s ease;
}

.floating-cart:hover {
  transform: scale(1.05);
}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 980px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .categories {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 320px;
  }

}


@media (max-width: 600px) {

  .navbar {
    padding: 15px;
  }

  .logo img {
    width: 90px;
    height: 90px;
  }

  .hero {
    height: 75vh;
    padding-top: 140px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .categories {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .category-card {
    height: 240px;
  }

  .category-card img {
    object-fit: cover;
    object-position: center;
  }

  .card-text h2 {
    font-size: 1.8rem;
  }

  .portfolio-btn,
  .instagram-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .floating-cart {
    bottom: 15px;
    right: 15px;
  }
}

/* ========================= */
/* GRADUATION PAGE */
/* ========================= */

.package-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ========================= */
/* INDIVIDUAL SLIDE CONTROL */
/* ========================= */

/* Private Slide 1 */
.privateSwiper .private-slide-1 {
  object-position: center 20%;
}

/* Private Slide 2 */
.privateSwiper .private-slide-2 {
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
}

/* Private Slide 3 */
.privateSwiper .private-slide-3 {
  object-position: center 35%;
}

/* Private Slide 4 */
.privateSwiper .private-slide-4 {
  object-position: center 25%;
}

.package-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.2)
    );

  z-index: 2;
}

.package-title {
  position: absolute;
  bottom: 80px;
  left: 6%;

  z-index: 5;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);

  padding: 30px;
  border-radius: 24px;

  max-width: 500px;
}

.package-title h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.package-title p {
  opacity: 0.8;
  font-size: 1rem;
}


/* ========================= */
/* PACKAGE SECTION */
/* ========================= */

.package-section {
  padding: 100px 6%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.package-card {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 40px;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.premium-card {
  border: 1px solid rgba(212,175,55,0.4);
}

.package-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.package-card h3 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 35px;
}

.package-card ul li {
  margin-bottom: 14px;
  opacity: 0.85;
  font-size: 1rem;
}


/* ========================= */
/* BOOKING BOX */
/* ========================= */

.booking-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-box label {
  font-size: 0.95rem;
  opacity: 0.8;
}

.booking-box input {
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.booking-box input:focus {
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}

.booking-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.add-cart-btn,
.order-btn {
  position: relative;
  margin-top: 12px;
  padding: 16px 20px;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.add-cart-btn {
  background: linear-gradient(135deg, #f3d36b, #d4af37);
  color: black;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.add-cart-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
}

.order-btn {
  background: linear-gradient(135deg, #d4af37, #f3d36b);
  color: black;
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}

.order-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 35px rgba(212,175,55,0.45);
}

/* CART OVERLAY */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 1500;
}

/* CART PANEL */
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100vh;
  background: #111;
  padding: 25px;
  z-index: 2000;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-panel.active {
  right: 0;
}

.cart-overlay.active {
  display: block;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.remove-btn {
  color: #d4af37;
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-total {
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: bold;
}

.checkout-btn {
  padding: 15px;
  border: none;
  background: #d4af37;
  color: black;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
}


/* ========================= */
/* SWIPER PAGINATION */
/* ========================= */

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #d4af37 !important;
  opacity: 1;
}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 980px) {

  .package-section {
    grid-template-columns: 1fr;
  }

  .package-title {
    left: 20px;
    right: 20px;
    bottom: 40px;
  }

  .package-title h1 {
    font-size: 2.8rem;
  }

}


@media (max-width: 600px) {

  .package-title {
    padding: 22px;
  }

  .package-title h1 {
    font-size: 2rem;
  }

  .package-card {
    padding: 28px;
  }

  .package-card h2 {
    font-size: 1.6rem;
  }

  .package-card h3 {
    font-size: 2rem;
  }

}
