/* ===========================
   JT NAILS SPA - STYLESHEET
   Colors: Light Gray & Gold
   =========================== */

:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5E6C8;
  --gold-dark: #8B6914;
  --gray-100: #F8F8F8;
  --gray-200: #F0F0F0;
  --gray-300: #E5E5E5;
  --gray-400: #D0D0D0;
  --gray-500: #999999;
  --gray-600: #777777;
  --gray-700: #555555;
  --gray-800: #333333;
  --gray-900: #1A1A1A;
  --white: #FFFFFF;
  --black: #111111;
  --font-heading: 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.gold { color: #d5b069; }

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

.promo-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 10px;
  font-weight: 700;
}


/* Notification */
#notification
{
    width:100%;
    background-image: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
    position: fixed;
    top: 0;
    z-index:9999999;    
    text-align:center;
    color: #000;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 13pt;
    display:none;
    padding: 5px;    
    border-bottom:1px solid #fff;
}
.notificationtop a
{
    color:#000;
    text-decoration:none;    
    background:#fff;
    padding:4px 5px 4px 5px;
    font-size:11pt;
    border-radius:5px;
    -moz-border-radius:5px;
    margin-left:10px;
    cursor:pointer;
}
.notificationtop a:hover
{
    color:#b78842!important;
    
}
/* Notification */

/*Flyer*/
#groupnoti {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: 999999999999;
    display: block;
}
#noti {
    width: 100%;
    overflow: hidden;
    max-width: 500px;
    margin: 0px auto;
    padding: 10px;
    margin-top: 130px;
    background: #fff;
    overflow: hidden;
    text-align: center;
}
#noti img {
    width: 100%;
}

#closenoti {
    width: 100%;
    cursor: pointer;
    margin-bottom: 5px;
    color: #000;
    font-weight: bold;
    text-align: right;
}
/*Flyer*/

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}
.preloader:after {
  position: absolute;
  right: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1s infinite linear;
  animation: pulse 1s infinite linear;
  background-image: url(../images/logo-load.webp);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
}
.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 34px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "";
  -webkit-transition: none;
  transition: none;
}


.Counters
{
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 250px;
    color: #fff;
    padding: 10px;
    line-height: 1.7;
    margin-top: 25px;
    border-radius: 10px;
    overflow:hidden;
    text-align:center;
    margin:0px auto;
    margin-top:30px;
}
.counter-l
{
    width:50%;
    float:left;
}

/* ===========================
   NAVIGATION
   =========================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 120px;
}

.nav-logo  
{
    display: flex; align-items: center; gap: 10px;
    width:100%;
    max-width:160px;
}
.logo-mark {
  width: 45px;
  height: 45px;
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo-text-group { line-height: 1.15; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links { display: flex; gap: 25px; align-items: center; }

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--gray-700);
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  transition: all 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  transition: all 0.3s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links .btn-book {
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: #000;
  padding: 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease);
}

.nav-links .btn-book::after { display: none; }
.nav-links .btn-book:hover { background:  #d5b069; color: #000; transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.nav-phone .material-icons { font-size: 18px; }

.nav-social { display: flex; gap: 10px; }
.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s var(--ease);
}

.nav-social a:hover { background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55); color: #000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gray-800);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

/* MOBILE NAV */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gray-800);
  letter-spacing: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); }

/* ===========================
   HERO SECTION - MODERN CREATIVE
   =========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /*background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);*/
  background: url(../images/bg-slider.webp) center center no-repeat;
  background-size: cover;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ccc 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ccc 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: #ccc;
  top: 30%;
  left: 45%;
  opacity: 0.3;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-badge .material-icons { font-size: 16px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 22px;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 25px;
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: #000;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: 2px solid #d5b069;
}

.btn-primary:hover { background: #d5b069; border-color: #b78842; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 35px;
  background: transparent;
  color: #000;
  border: 2px solid #d5b069;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.btn-secondary:hover  
{
    background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
}

.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; letter-spacing: 0.5px; }

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 520px;
}

.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.5s var(--ease);
}

.hero-img-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.hero-img-card:nth-child(1) { grid-row: span 2; border-radius: 80px 20px 20px 20px; }
.hero-img-card:nth-child(2) { border-radius: 20px 80px 20px 20px; }
.hero-img-card:nth-child(3) { border-radius: 20px 20px 80px 20px; }

.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card:nth-child(1) img { height: 100%; min-height: 400px; }
.hero-img-card:nth-child(2) img, .hero-img-card:nth-child(3) img { height: 200px; }

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-floating-card .material-icons { font-size: 28px; color: var(--gold); }
.hero-floating-card .hfc-text { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.hero-floating-card .hfc-sub { font-size: 11px; color: var(--gray-500); }

/* HERO SOCIAL SIDEBAR */
.hero-social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 5;
  padding: 15px 12px;
  background: var(--white);
  border-radius:0 30px 30px 0;
  box-shadow: var(--shadow-sm);
}

.hero-social-sidebar a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 18px;
  transition: all 0.3s var(--ease);
}

.hero-social-sidebar a:hover { color: var(--gold); background: var(--gold-pale); }

.hero-social-sidebar .sidebar-label {
  writing-mode: vertical-lr;
  /*transform: rotate(180deg);*/
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ===========================
   SECTION COMMON STYLES
   =========================== */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading .overline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.section-heading .subtitle {
  font-family: var(--font-script);
  font-size: 20px;
  font-style: italic;
  color: var(--gray-600);
  margin-top: 8px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: 100px 40px;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img { width: 100%; height: 450px; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-overline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 25px;
}

.about-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature .material-icons {
  font-size: 28px;
  color: var(--gold);
  margin-top: 2px;
}

.about-feature h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.about-feature p { font-size: 12px; color: var(--gray-600); line-height: 1.5; margin-bottom: 0; }

/* ===========================
   SERVICES SECTION (HOME)
   =========================== */
.services-home {
  padding: 100px 40px;
  /*background: var(--gray-100);*/
  background: url(../images/bg-body.webp) center center no-repeat;
  background-size: cover;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card-home {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.service-card-home:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card-home img { width: 100%; height: 220px; object-fit: cover; }

.service-card-home-body { padding: 25px; }
.service-card-home-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card-home-body p { font-size: 13px; line-height: 1.7; color: var(--gray-600); }

.service-card-home-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  transition: all 0.3s var(--ease);
}

.service-card-home-body .card-link:hover { gap: 10px; }

/* ===========================
   GALLERY SECTION (HOME)
   =========================== */
.gallery-home {
  padding: 100px 40px;
  background: var(--white);
}

.gallery-home-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-home-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-home-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s var(--ease); }
.gallery-home-item:hover img { transform: scale(1.08); }

.gallery-home-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.gallery-home-item:hover .overlay { opacity: 1; }
.gallery-home-item .overlay .material-icons { color: var(--white); font-size: 36px; }

.gallery-view-all {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
  padding: 100px 40px;
  background: url(../images/bg-home2.webp) center center no-repeat;
  background-size: cover;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-track { display: flex; transition: transform 0.5s var(--ease); }

.review-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.review-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 20px; }
.review-text {
  font-family: var(--font-script);
  font-size: 22px;
  font-style: italic;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.review-author { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.review-role { font-size: 12px; color: #000; margin-top: 3px; }

.review-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-400);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.review-dot.active { background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55); width: 30px; border-radius: 5px; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  padding: 80px 40px;
  background: url(../images/bg-home01.webp) center center no-repeat fixed;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.cta-banner p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}

/* ===========================
   E-GIFT SECTION
   =========================== */
.egift-section {
  padding: 80px 40px;
  background: var(--white);
}

.egift-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.egift-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.egift-text p { font-size: 15px; line-height: 1.8; color: var(--gray-600); margin-bottom: 25px; }

.egift-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.egift-image img 
{
    width: 100%; 
    height: 300px; 
    object-fit: cover;
    border:3px solid #ccc;
    border-radius: var(--radius);
}

/* ===========================
   HOST A PARTY SECTION (HOME)
   =========================== */
.party-home {
  padding: 80px 40px;
  /*background: var(--gray-100);*/
  background: url(../images/bg-home2.webp) center center no-repeat;
  background-size: cover;
}

.party-home-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.party-home-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.party-home-image img  
{
    width: 100%; 
    height: 350px; 
    object-fit: cover; 
    border:3px solid #ccc;
    border-radius: var(--radius);
}

.party-home-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.party-home-text p { font-size: 15px; line-height: 1.8; color: #000; margin-bottom: 25px; }

/* ===========================
   INFO BAR
   =========================== */
.info-bar {
  padding: 60px 40px;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.info-item .material-icons { font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.info-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.info-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.info-item a { color: var(--gold); font-weight: 600; }

/* ===========================
   FOOTER
   =========================== */
.main-footer {
  background: url(../images/bg-footer.webp) center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--gold-light); }

.footer-brand p { font-size: 14px; line-height: 1.7; color: #fff; margin-top: 15px; }
.footer-brand .footer-address { margin-top: 10px; font-size: 13px; }
.footer-brand .footer-phone { color: var(--gold-light); font-weight: 600; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col .footer-links { list-style: none; }
.footer-col .footer-links li { margin-bottom: 10px; }
.footer-col .footer-links a {
  font-size: 13px;
  color: #fff;
  transition: all 0.3s var(--ease);
}

.footer-col .footer-links a:hover { color: var(--gold-light); }

.footer-hours p { font-size: 13px; margin-bottom: 6px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover { background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55); color: #000; }

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
}

.footer-bottom a { color: var(--gold-light); }

.logo-footer img
{
    width:100%;
    max-width:110px;   
}
/* ===========================
   BOTTOM MOBILE NAV
   =========================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  display: none;
  border-top: 1px solid var(--gray-300);
  z-index: 1000;
}

.bottom-nav-row {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  cursor:pointer;
  transition: all 0.3s var(--ease);
}

.bottom-nav a .material-icons { font-size: 22px; }
.bottom-nav a:hover { color: var(--gold); }

/* FLOATING BUTTONS */
.floating-book {
   position: fixed;
      right: 0px;
    top: 55%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: #000;
  padding: 10px;
  cursor:pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px 8px;
  z-index: 900;
  transition: all 0.3s var(--ease);
}

.floating-book:hover { /*transform: translateY(-3px); box-shadow: 0 10px 35px rgba(184,134,11,0.5);*/ background:  #d5b069; }

.floating-signup {
  position: fixed;
      right: 0px;
    top: 35%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: #000;
  padding: 20px 10px;
  cursor:pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px 8px;
  z-index: 900;
  transition: all 0.3s var(--ease);
}

.floating-signup:hover { background:  #d5b069; }

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(5px);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.3s var(--ease);
}

.modal-close:hover { color: var(--gray-800); }

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.modal-subtitle { font-size: 13px; color: var(--gray-500); margin-bottom: 25px; }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-row label span { color: var(--gold); }

.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  transition: all 0.3s var(--ease);
}

.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-row textarea { height: 120px; resize: vertical; }

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--white); font-size: 40px; cursor: pointer; }
.lightbox-img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-sm); }

/* ===========================
   PAGE HEADER (Inner Pages)
   =========================== */
.page-header {
  padding: 100px 40px 80px;
  background: url(../images/bg-page.webp) center center no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.page-header .breadcrumb { font-size: 13px; color: #000; }
.page-header .breadcrumb a { color: var(--gold); }

.page-gallery
{
    background:none;
}
/* ===========================
   SERVICES PAGE
   =========================== */
.services-page { padding: 60px 40px 100px; background: var(--white); }

.service-block {
  max-width: 1100px;
  margin: 0 auto 60px;
  /*display: grid;
  grid-template-columns: 1fr 1fr;*/
  gap: 40px;
  /*align-items: start;*/
  padding: 30px;
  background: url(../images/bg-sv.webp) center 80% no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.service-block:hover { box-shadow: var(--shadow-md); }

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block-img {  overflow: hidden; margin-bottom:30px; display:flex;}
.service-block-img img {  width: 100%; max-width:50%; padding:5px;  object-fit: cover; border-radius: 30px; }
.sv-title
{
    text-align:center;
}
.service-block-label {
  display: inline-block;
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: #000;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: italic;
  padding: 8px 25px;
  text-align:center;
  border-radius: 30px;
  margin-bottom: 15px;
}

.service-block-desc { font-size: 13px; line-height: 1.7; color: var(--gray-800); margin-bottom: 20px; }

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted var(--gray-600);
}

.service-item-name { font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: #000; }
.service-item-price { color: var(--gold); font-weight: 700; font-size: 16px; white-space: nowrap; }
.service-item-desc { font-size: 14px; color: var(--gray-800); padding: 4px 0 8px; line-height: 1.6; }
.service-item-note { font-size: 14px; font-style: italic; color: var(--gray-800); margin-bottom: 10px; }
.text-center
{
    text-align:center !important;
}
/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-page { padding: 60px 40px 100px; background: var(--white); }

.gallery-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s var(--ease); }
.gallery-page-item:hover img { transform: scale(1.06); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page { padding: 60px 40px 100px; background: var(--white); }

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 { font-family: var(--font-heading); font-size: 32px; color: var(--gray-900); margin-bottom: 25px; }

.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-item .material-icons { font-size: 24px; color: var(--gold); margin-top: 2px; }
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-800); }
.contact-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.contact-item a { color: var(--gold); }

.contact-form-card {
  background: var(--gray-100);
  padding: 35px;
  border-radius: var(--radius);
}

.contact-form-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--gray-900); margin-bottom: 25px; }

.contact-map {
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-500);
}

/* ===========================
   PROMOTIONS / HAPPY HOUR / PARTY
   =========================== */
.promo-page 
{
    max-width: 670px;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    margin-bottom:30px;
}

.promo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: all 0.4s var(--ease);
}

.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.promo-card img { width: 100%; height: 220px; object-fit: cover; }

.promo-card-body { padding: 25px; }
.promo-card-body h3 { font-family: var(--font-heading); font-size: 20px; color: var(--gray-900); margin-bottom: 10px; }
.promo-card-body p { font-size: 13px; line-height: 1.7; color: var(--gray-600); }

.promo-badge {
  display: inline-block;
  background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 15px;
}

/* PARTY PAGE */
.party-page { width:100%; max-width: 1000px; margin: 0 auto; padding:10px;}
.party-content { width:100%; max-width: 800px; margin: 0 auto;}
.party-content h2 { font-family: var(--font-heading); font-size: 36px; margin-bottom: 20px; color: var(--gray-900); }
.party-content p { font-size: 15px; line-height: 1.8; color: var(--gray-600); margin-bottom: 20px; }

.party-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 50px 0;
}

.party-feature {
  background: var(--gray-100);
  padding: 35px 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-300);
}

.party-feature .material-icons { font-size: 40px; color: var(--gold); margin-bottom: 12px; }
.party-feature h4 { font-family: var(--font-heading); font-size: 18px; color: var(--gray-900); margin-bottom: 8px; }
.party-feature p { font-size: 13px; color: var(--gray-600); margin-bottom: 0; }
#form
{
    background: var(--gray-100);
    padding: 35px;
    border-radius: var(--radius);
    color:#000;
}
.formrowtop
{
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}
#formnotify, #formnotifyS {
    width: 90%;
    max-width: 400px;
    min-height: 160px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    -moz-border-radius: 10px;
    position: fixed;
    top: 40%;
    left: 50%;
    margin-left: -200px;
    padding: 10px;
    text-align: center;
    box-shadow: 2px 2px 5px #666;
    z-index: 99999;
    display: none;
}

#formnotifycontent, #formnotifycontentS {
    font-size: 12pt;
    color: #666;
    margin-top: 30px;
}

#formnotifyok, #formnotifyokS {
    margin: 0px auto;
    margin-top: 20px;
    width: 100px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    background: #df811e;
    cursor: pointer;
}

#formsign {
    margin-top: 30px;
}

#formnotifyok:hover {
    background: #be3024;
}

#formpwait, #formpwaitS {
    float: left;
    margin-left: 20px;
    display: none;
}

#formwait {
    display: none;
}

/*Host-a-party*/
.party-section img
{
   	width: 100%;
    max-width: 500px;
}
.party-img-2{
     
    margin: 20px 0;
}
.color-edit
{
    color:#cb8300 !important;    
}
#selected
{
    color:#000!important;
    font-weight:bold;
}

.txt_hostparty
{
   
    color:#000;
    font-size:12pt;
    text-align:center;
    margin-bottom:20px;
    margin-top:50px;
    line-height:27px;
}
.img_hostparty
{
	width:100%;
	margin:30px 0;
	text-align:center;	
	overflow:hidden;
}

.img_hostparty img
{
	
	max-width:100%;
	width:50%;
	float:left;
	padding:10px;
	margin-bottom:10px;
	border-radius:30px;
}

input, textarea
{
   width: 100%;
   padding: 0px 8px;
}

#bPartySend
{
	width: 100%;
	max-width: 150px;
	background: #d2b48c;
	color: #fff;
	text-align: center;
	cursor: pointer;
	margin: 0px auto;
	height: 35px;
	line-height: 35px;
}
#bPartySend:hover
{
    opacity:0.8;
}
#Btn_Party
{
	width: 100%;
	max-width: 150px;
	background: linear-gradient(to bottom right, #c19346, #d5b069, #eed996, #b78842, #c99f55);
	text-transform:uppercase;
	color: #000;
	text-align: center;
	cursor: pointer;
	margin: 0px auto;
	height: 45px;
	line-height: 45px;
  border-radius: 30px;
}
#Btn_Party:hover
{
    background:#d5b069;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) 
{
    
    .nav-links {
        gap: 20px;
    }
   .nav-links a
   {
       letter-spacing: 0px;
   }
}
@media (max-width: 1100px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-social-sidebar { /*display: none;*/ }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .floating-signup 
  {
      right: 0px;
  }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-features { justify-content: center; }
  .about-img-accent { right: auto; left: 50%; transform: translateX(-50%); }
  .egift-inner, .party-home-inner { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .gallery-home-grid { grid-template-columns: repeat(2, 1fr); }
  .party-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bottom-nav { display: block; }
  .main-footer { padding-bottom: 80px; }
  .floating-book { /*bottom: 70px; right: 15px; padding: 12px 20px; font-size: 11px;*/ }
  .floating-signup { /*display: none;*/ }
  .hero-title { font-size: 42px; }
  .hero-image-grid { max-width: 350px; }
  .hero-img-card:nth-child(1) img { min-height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  
  #notification
    {
        font-size: 12pt;
    }
    .nav-inner
    {
        height:90px;
        padding: 0 20px;
    }
    
    .nav-logo
    {
        max-width: 120px;
    }

}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .hero-image-grid { max-width: 280px; gap: 10px; }
  .hero-floating-card { display: none; }
  .section-heading h2 { font-size: 32px; }
  .page-header h1 { font-size: 34px; }
}
