*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body{
  background:#ffffff;
  color:#222;
  overflow-x:hidden;
}

/* ---------- SPLASH (APPLE STYLE) ---------- */
.splash{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:9999;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;

  /* GLASS BLUR LIKE LEFT BAR */
  background:rgba(255,255,255,0.30);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 0 40px rgba(0,0,0,0.15);

  animation: fadeIn 1.2s ease;
}


.splash-title{
  font-family:"Allura", cursive;
  font-size:4.6rem;
  font-weight:400;
  color:#000;
  letter-spacing:2px;
  opacity:0;
  animation: fadeSlide 2s ease forwards;
}

.splash-sub, .splash-hint{
  opacity:0;
  font-family:"Poppins", sans-serif;
  font-size:1.1rem;
  color:#444;
  animation: fadeIn 1.5s ease forwards;
}

.splash-sub{
  animation-delay:0.6s;
}

.splash-hint{
  animation-delay:1.2s;
}

@keyframes fadeSlide{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

.splash.hide{
  opacity:0;
  pointer-events:none;
  transition:1s ease;
}

/* ---------- FLOATING EMOJIS ---------- */
.float-emoji{
  position:fixed;
  font-size:40px;
  opacity:0.55;
  animation: floatUp 6s linear infinite;
}

.float-emoji:nth-child(2){left:20%; animation-delay:1s;}
.float-emoji:nth-child(3){left:65%; animation-delay:2s;}

@keyframes floatUp{
  0%{ top:110%; transform:rotate(0deg); }
  100%{ top:-10%; transform:rotate(260deg); }
}

/* HEADER */
.site-header{
  width:100%;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background:rgba(255,255,255,0.35);
  border-bottom:1px solid rgba(255,255,255,0.3);
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 4px 30px rgba(0,0,0,0.05);
}


.header-container{
  max-width:1200px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo{
  font-size:1.35rem;
  font-weight:700;
  color:#e53935;
}

.nav-desktop{
  display:flex;
  gap:28px;
}

.nav-desktop a{
  text-decoration:none;
  color:#333;
}

.nav-desktop .btn{
  background:#e53935;
  color:#fff;
  padding:8px 18px;
  border-radius:999px;
}
.site-header::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.4),
    rgba(255,255,255,0.08)
  );
  pointer-events:none;
}


/* HAMBURGER */
.hamburger{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ---------- MOBILE MENU GLASS STYLE ---------- */
.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:78%;
  height:100%;
  backdrop-filter: blur(16px);
  background:rgba(255,255,255,0.3);
  padding:20px;
  transition:0.45s ease;
  z-index:999;
  border-right:1px solid rgba(255,255,255,0.35);
  border-top-right-radius:24px;
  border-bottom-right-radius:24px;
  box-shadow:8px 0 30px rgba(0,0,0,0.15);
}

/* TOP BAR */
.mobile-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.mobile-logo{
  font-size:1.5rem;
  font-weight:600;
  color:#e53935;
}

.mobile-close{
  font-size:26px;
  cursor:pointer;
}

/* MENU BUTTONS (DEFAULT STATE) */
.mobile-nav a{
  display:block;
  padding:14px 12px;
  margin-bottom:10px;
  border-radius:12px;
  font-size:1.1rem;
  font-weight:500;
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(4px);
  transition:0.3s;
  color:#000;                  /* 👉 DEFAULT TEXT BLACK */
  text-decoration:none !important;
  outline:none;
  border:none;
}

/* HOVER STYLE */
.mobile-nav a:hover:not(.active){
  background:#ffe169;         /* 👉 BUTTON RED */
  color:black !important;      /* 👉 TEXT WHITE */
  transform:translateX(6px);
}

/* ACTIVE PAGE STYLE */
.mobile-nav a.active{
  background:#e53935;         /* 👉 BUTTON RED */
  color:#fff !important;      /* 👉 TEXT WHITE */
  transform:none;
}

/* ACTIVE ON HOVER (NO CHANGE) */
.mobile-nav a.active:hover{
  background:#e53935;
  color:#fff !important;
  transform:none;
}

/* REMOVE LINK FEEL */
.mobile-nav a:focus,
.mobile-nav a:visited,
.mobile-nav a:active{
  color:#000;
  text-decoration:none;
}


/* HERO */
.hero{
  text-align:center;
  padding:60px 20px;
  background:rgba(255,255,255,0.6);
}

/* CATEGORY */
.category-section{
  width:80%;
  max-width:1100px;
  margin:60px auto;
  padding:40px 20px 60px;
  background:rgba(255,255,255,0.20);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  position:relative;
}



.section-title{
  text-align:center;
  font-size:2.2rem;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  color:#111;
  margin-bottom:38px;
  letter-spacing:1.4px;
}


/* GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */
.cat-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
  overflow:hidden;
  text-align:center;
  opacity:0;
  transform:translateY(40px);
  transition:0.5s ease;
}

.cat-card.show-card{
  opacity:1;
  transform:translateY(0);
}

.cat-card:hover{
  transform:translateY(-12px);
  box-shadow:0 18px 38px rgba(0,0,0,0.15);
  transition:0.3s;
}

.cat-img{
  width:100%;
  aspect-ratio:16 / 10;
  overflow:hidden;
}

.cat-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cat-card span{
  display:block;
  padding:14px 10px 18px;
  font-weight:600;
}
/* DESKTOP BACKGROUND */
.main-wrapper{
  background:url("../asset/style2.png") center top / cover no-repeat fixed;
  min-height:100vh;
}

/* MOBILE */
@media (max-width:768px){
  .nav-desktop{
    display:none;
  }
   .main-wrapper{
    background:url("../asset/style1.png") center top / cover no-repeat fixed;
  }
.category-section{
    width:92%;
    padding:30px 14px 40px;
  }
  .hamburger{
    display:block;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .splash-title{
    font-size:3.2rem;
  }
}
.category-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.45),
    rgba(255,255,255,0.08)
  );
  opacity:0.4;
  pointer-events:none;
}
.category-section{
  position:relative;
}
.logo{
  font-family:"Cormorant Garamond", serif;
  font-size:1.8rem;
  font-weight:600;
  letter-spacing:1px;
  color:#000;
}

.hamburger{
  font-size:26px;
  font-weight:300;
  color:#000;
  padding:6px 12px;
  border-radius:12px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  background:rgba(255,255,255,0.35);
  border:1px solid rgba(255,255,255,0.45);
}
.nav-desktop a:hover{
  color:#000;
  background:rgba(255,255,255,0.45);
  border-radius:8px;
  backdrop-filter:blur(6px);
}
.apple-btn{
  background:rgba(255,255,255,0.5);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.6);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  border-radius:999px;
  padding:10px 22px;
  font-weight:600;
  margin-bottom:16px;
  margin-top:6px;
  font-size:0.95rem;
  cursor:pointer;
  transition:0.3s;
}

.apple-btn:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.85);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.cat-card{
  background:rgba(255,255,255,0.35);
  backdrop-filter:blur(25px);
  -webkit-backdrop-filter:blur(25px);
  border:1px solid rgba(255,255,255,0.35);
  border-radius:22px;
  box-shadow:0 15px 45px rgba(0,0,0,0.12);
  overflow:hidden;
  text-align:center;
  opacity:0;
  transform:translateY(40px);
  transition:0.45s ease;
}

.cat-card:hover{
  transform:translateY(-14px);
  box-shadow:0 28px 48px rgba(0,0,0,0.22);
}

.cat-card,
.cat-card span,
.cat-card a,
.cat-card a:visited,
.cat-card a:hover,
.cat-card a:active {
  color:#000 !important;
  text-decoration:none !important;
}
.cat-card span {
  font-family: "Montserrat", sans-serif !important;
  font-size: 1rem;
  font-weight: 600;
}
.hero h1 {
  font-family: "Allura", cursive !important;
  font-size: 3.2rem;
  font-weight: 400;
  font-weight: 700 !important;
  letter-spacing: 2px;
  color:#003b52 !important;   /* deep luxury red  */
}
.logo {
  color:#003B52 !important;   /* deep luxury red */
}
.section-title {
  color:#003b52 !important;   /* deep luxury red */
}
.hero p {
  font-size:1.2rem !important;   /* 👉 size increase */
  font-weight:500;
  letter-spacing:0.5px;
}
.logo-pill {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #003B52 !important;   /* 👉 NEW COLOUR */
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  font-family: "Nunito extra bold", cursive;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}


/* ===========================
   APPLE STYLE FOOTER CARD
=========================== */
.footer-card {
  width: 100%;
  padding: 50px 0 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.35);
  margin-top: 60px;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
  background: url("../asset/style1.png") center/cover no-repeat fixed;
  backdrop-filter: blur(30px) saturate(180%);

}

/* ===========================
   GRID LAYOUT
=========================== */
.footer-content {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  color: #003b52;
}

@media(max-width:920px){
  .footer-content {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===========================
   PREMIUM GLASS FOOTER
=========================== */
.footer-card {
  width: 100%;
  padding: 60px 0 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.25);
  margin-top: 60px;
  font-family: "Poppins", sans-serif;
  color: #003B52;
  background: url("../asset/style2.png") center/cover no-repeat fixed;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
  }

  .footer-content {
    width: 94%;
    gap: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
  }

  .f-col h4 {
    font-size: 1.2rem;
  }

  .f-col p,
  .f-col li {
    font-size: 0.95rem;
  }

  .footer-map-area {
    width: 94%;
    border-radius: 16px;
    background: rgba(255,255,255,0.18);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }

  .footer-bottom {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}

}

/* ===========================
   GRID SECTION
=========================== */
.footer-content {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

@media(max-width:920px){
  .footer-content {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===========================
   BRANDING
=========================== */
.f-logo {
  font-family: "Allura", cursive;
  font-size: 2.5rem;
  font-weight: 600;
  color: #003B52;
  text-shadow: 0px 0px 6px rgba(255,255,255,0.45);
}

/* ===========================
   TEXT FIX
=========================== */
.footer-content p,
.footer-content li {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===========================
   HEADINGS
=========================== */
.f-col h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #003B52;
}

/* ===========================
   LINKS
=========================== */
.footer-content a {
  color: #003B52;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-content a:hover {
  opacity: 1;
  color: #0087a3;
  text-shadow: 0px 0px 6px rgba(0,135,163,0.4);
}

/* ===========================
   WHATSAPP BUTTON
=========================== */
.f-btn {
  display: inline-block;
  margin-top: 15px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 22px;
  border-radius: 50px;
  color: #003B52;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.55);
  transition: 0.3s;
}

.f-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.55);
}

/* ===========================
   MAP GLASS CARD
=========================== */
.footer-map-area {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 20px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.45);
}

.footer-map-area iframe {
  display: block;
  border: none;
  width: 100%;
  height: 230px;
}

/* ===========================
   COPYRIGHT
=========================== */
.footer-bottom {
  text-align: center;
  color: #003B52;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255,255,255,0.35);
}
@media(max-width:600px){

  .footer-card {
    padding: 40px 0 0;
    background: url("../asset/style1.png") center/cover no-repeat fixed;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
  }

  .footer-content {
    width: 94%;
    gap: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
  }

  .f-col h4 {
    font-size: 1.2rem;
  }

  .f-col p,
  .f-col li {
    font-size: 0.95rem;
  }

  .footer-map-area {
    width: 94%;
    border-radius: 16px;
    background: rgba(255,255,255,0.18);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }

  .footer-bottom {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}
.footer-card {
  padding-top: 80px;
}

.footer-content {
  padding: 40px 30px;
}
/* ===========================
   CATEGORY SWITCH CARD
=========================== */
.category-switch {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto 0;
}

.switch-card {
  width: 100%;
  padding: 18px 25px;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;

  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* BUTTON STYLE */
.switch-pill {
  text-align: center;
  padding: 12px 0;
  font-size: 1rem;
  color: #003B52;
  font-weight: 600;

  background: rgba(255,255,255,0.35);
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.55);

  transition: 0.25s ease-in-out;
}

.switch-pill:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.55);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

.switch-pill.active {
  background: #003B52;
  color: white;
  box-shadow: 0 0 15px rgba(255,255,255,0.45);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media(max-width:768px){
  .switch-card {
    grid-template-columns: repeat(2,1fr);
    padding: 14px;
    gap: 12px;
  }
  .switch-pill {
    font-size: 0.92rem;
    padding: 10px 0;
  }
}
.category-switch {
  margin-bottom: 40px !important;
}

.gallery-title {
  margin-top: 40px !important;
}
