/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff7fb;
  color: #444;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  height: 40px;
  background: linear-gradient(to right, #a87ee9, #f4b2cb);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 25px;
}

.auth-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.register {
  background: #ee8d8d;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

/* =========================
   HEADER
========================= */
.header {
  background: white;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 175px;
  height: auto;
}

.logo span {
  font-size: 28px;
  color: #4b4b4b;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #a87ee9;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(#ffd6e5, #ffffff);
}

.hero h1 {
  font-size: 52px;
  color: #ff5f97;
}

.hero p {
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #ff5f97;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

/* =========================
   HERO GALLERY
========================= */
.hero-gallery {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 15px;
  align-items: stretch;
}

/* ================= LEFT (GIF 1:1) ================= */
.gallery-left {
  display: flex;
}

.gallery-left .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-left .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= RIGHT (SLIDER) ================= */
.slider-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
  min-height: 450px;
}

/* container slide */
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

/* setiap slide */
.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tombol */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 15px;
}
.arrow.right {
  right: 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .slider-right {
    order: 1;
    min-height: 300px;
  }

  .gallery-left {
    order: 2;
    justify-content: center;
  }

  .gallery-left .photo {
    width: 180px;
  }
}

/* =========================
   SECTION
========================= */
.section {
  padding: 80px 10%;
}

.title {
  text-align: center;
  color: #ff5f97;
  margin-bottom: 40px;
}

/* =========================
   ABOUT
========================= */
.about-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  max-width: 350px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 90px);
  gap: 15px;
}

.about-grid div {
  background: #ddd;
  height: 90px;
  border-radius: 15px;
}

/* =========================
   ICONS
========================= */
.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffc4d7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
}

.icon:hover {
  transform: scale(1.1);
}

/* =========================
   CATALOG
========================= */
.catalog-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-grid img {
  width: 280px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.catalog-grid img:hover {
  transform: translateY(-10px);
}

/* =========================
   MODERN CATALOG
========================= */

.catalog-section {
  background: #fff;
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.catalog-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.catalog-card:hover {
  transform: translateY(-8px);
}

.catalog-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.catalog-content {
  padding: 20px;
}

.catalog-content h3 {
  color: #ff5f97;
  margin-bottom: 10px;
}

.catalog-content p {
  color: #666;
  font-size: 14px;
  min-height: 45px;
}

.catalog-info {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-weight: 600;
}

.catalog-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: #ff5f97;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.catalog-btn:hover {
  background: #e14a82;
}

.catalog-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.catalog-filter button {
  border: none;
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: Poppins;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.catalog-filter .active {
  background: #ff5f97;
  color: white;
}

.promo-banner {
  padding: 80px 10%;
}

.promo-content {
  background: linear-gradient(135deg, #ff8fb8, #ffc7da);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  color: white;
}

.promo-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.promo-content a {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #ff5f97;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
/* =========================
   TAGS
========================= */
.tags {
  background: #ffdce9;
}

.tag-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: white;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.tag:hover {
  background: #ff5f97;
  color: white;
}

/* =========================
   GALLERY
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.grid img {
  width: 100%;
  border-radius: 15px;
}

/* =========================
   SELFIE
========================= */
.selfie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.selfie-grid div {
  height: 120px;
  background: #ddd;
  border-radius: 15px;
}

/* =========================
   TESTIMONIAL
========================= */
.review {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin: 15px auto;
  max-width: 600px;
}

/* =========================
   BOOKING CARDS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

/* =========================
   FAQ
========================= */
.faq {
  background: #fff0f6;
}

details {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
}

/* =========================
   ANIMATION
========================= */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .hero-gallery {
    grid-template-columns: 180px 1fr;
  }

  .gallery-left {
    grid-template-rows: 120px 60px 120px;
  }

  .logo span {
    font-size: 22px;
  }

  .nav-menu {
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 60px 5%;
  }

  .grid,
  .selfie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
  }

  .header {
    flex-direction: column;
    height: auto;
    padding: 15px;
    gap: 15px;
  }

  .logo {
    justify-content: center;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .slider-right {
    order: 1;
    min-height: 280px;
  }

  .gallery-left {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .photo-empty {
    display: none;
  }

  .photo {
    aspect-ratio: 1/1;
  }

  .photo-large {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .about-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .catalog-grid img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .grid,
  .selfie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .icons {
    flex-wrap: wrap;
  }
}
/* =========================
   Footer
========================= */
.footer {
  background: #e9c9d8;
  padding: 80px 100px 40px;
}

/* ===================== */
/* TOP */
/* ===================== */

.footer-container {
  display: grid;
  grid-template-columns:
    1.2fr
    1fr
    1fr
    1fr
    1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-logo img {
  width: 320px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 18px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ff4b91;
}

/* ===================== */
/* STORE BUTTON */
/* ===================== */

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.store-buttons img {
  width: 180px;
  cursor: pointer;
}

/* ===================== */
/* LINE */
/* ===================== */

.footer hr {
  margin: 70px 0 25px;
  border: none;
  border-top: 1px solid #333;
}

/* ===================== */
/* BOTTOM */
/* ===================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 18px;
  color: #000;
}

/* ===================== */
/* SOCIAL */
/* ===================== */

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
}

.social-icons a:nth-child(1) {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-icons a:nth-child(2) {
  background: #1da1f2;
}

.social-icons a:nth-child(3) {
  background: #000;
}

.social-icons a:nth-child(4) {
  background: #ff0000;
}

.social-icons a:nth-child(5) {
  background: #25d366;
}
/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .title {
    font-size: 22px;
  }

  .logo span {
    font-size: 24px;
  }

  .gallery-left {
    grid-template-columns: 1fr;
  }

  .photo-large {
    grid-column: auto;
  }

  .photo {
    aspect-ratio: 4/3;
  }

  .grid,
  .selfie-grid {
    grid-template-columns: 1fr;
  }

  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.slider-track {
  transition: transform 0.6s ease-in-out;
}

@media (max-width: 992px) {
  .footer {
    padding: 50px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* =========================
   CATALOG PAGE
========================= */

.catalog-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.catalog-filter button {
  border: none;
  background: white;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.catalog-filter button:hover {
  background: #ff5f97;
  color: white;
}

.catalog-filter .active {
  background: #ff5f97;
  color: white;
}

.promo-banner {
  padding: 0 10% 50px;
}

.promo-content {
  background: linear-gradient(135deg, #ff7faf, #ffc4d7);

  padding: 50px;
  border-radius: 30px;
  text-align: center;
  color: white;
}

.promo-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.promo-content p {
  font-size: 18px;
}

.promo-content a {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #ff5f97;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
}

.catalog-section {
  background: #fff;
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

.catalog-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.catalog-card:hover {
  transform: translateY(-8px);
}

.catalog-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.catalog-content {
  padding: 20px;
}

.catalog-content h3 {
  color: #ff5f97;
  margin-bottom: 10px;
}

.catalog-content p {
  color: #666;
  min-height: 50px;
}

.catalog-info {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-weight: 600;
}

.catalog-btn {
  display: block;
  text-align: center;
  background: #ff5f97;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.catalog-btn:hover {
  background: #e44881;
}

/* =========================
   BOOKING PAGE
========================= */

.booking-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(#ffd6e5, #fff);
}

.booking-hero h1 {
  font-size: 48px;
  color: #ff5f97;
  margin-bottom: 10px;
}

.booking-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  color: #ff5f97;
  margin-bottom: 15px;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 10px;
}

.promo-card {
  background: linear-gradient(135deg, #ff8fb8, #ffc6da);

  color: white;
}

.promo-card h3 {
  color: white;
}

.booking-form-box {
  background: white;
  padding: 35px;
  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-form-box h2 {
  text-align: center;
  color: #ff5f97;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 12px 15px;

  border: 1px solid #ddd;
  border-radius: 12px;

  font-family: Poppins;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.booking-btn {
  width: 100%;

  border: none;
  background: #ff5f97;
  color: white;

  padding: 15px;

  border-radius: 15px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.booking-btn:hover {
  background: #e44982;
}

@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .booking-hero h1 {
    font-size: 34px;
  }
}

/* =========================
   LOGIN PAGE
========================= */

.login-section {
  min-height: 85vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px 20px;

  background: linear-gradient(135deg, #ffe1eb, #fff7fb);
}

.login-card {
  width: 100%;
  max-width: 950px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: white;

  border-radius: 30px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT */

.login-left {
  background: linear-gradient(135deg, #ff8fb8, #ffc6da);

  color: white;

  padding: 60px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.login-left img {
  width: 180px;
  margin-bottom: 25px;
}

.login-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.login-left p {
  line-height: 1.8;
}

/* RIGHT */

.login-right {
  padding: 50px;
}

.login-right h2 {
  text-align: center;
  color: #ff5f97;
  margin-bottom: 30px;
}

.login-right .form-group {
  margin-bottom: 20px;
}

.login-right label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.login-right input {
  width: 100%;
  padding: 14px;

  border: 1px solid #ddd;
  border-radius: 12px;

  font-family: Poppins;
}

.login-btn {
  width: 100%;

  border: none;

  background: #ff5f97;
  color: white;

  padding: 15px;

  border-radius: 12px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.login-btn:hover {
  background: #e54a83;
}

.login-links {
  text-align: center;
  margin-top: 25px;
}

.login-links a {
  color: #ff5f97;
  text-decoration: none;
  font-weight: 500;
}

.login-links p {
  margin-top: 10px;
}

/* MOBILE */

@media (max-width: 768px) {
  .login-card {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 40px 25px;
  }

  .login-right {
    padding: 30px 25px;
  }
}

.login-form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.login-form .btn {
  border: none;
  cursor: pointer;
}
