/* ============================================
   Luxe Lash Bar – Premium Black & Gold Theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a962;
  --gold-light: #ddc68a;
  --gold-dark: #a68b4a;
  --gold-glow: rgba(201, 169, 98, 0.35);
  --white: #f5f5f5;
  --white-muted: #b0b0b0;
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --container: min(1200px, 92vw);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--white-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: -2%;
  background: url("images/reception.jpg") center/cover no-repeat;
  filter: blur(0.5px) brightness(1.35) contrast(1.12);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.22) 35%,
    rgba(0, 0, 0, 0.20) 55%,
    rgba(0, 0, 0, 0.28) 75%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-gold-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.08) 0%,
    transparent 35%,
    transparent 65%,
    rgba(201, 169, 98, 0.06) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.hero-logo {
  display: block;
  margin: -13rem auto 1.5rem; /* Reduced for better balance */
  max-width: 110px;
  width: 110px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  background: transparent;
  border: none;
  filter: drop-shadow(-2px -2px 3px rgba(221, 198, 138, 0.18))
          drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 24px rgba(201, 169, 98, 0.25))
          drop-shadow(0 0 48px rgba(201, 169, 98, 0.12));
  transition: transform 0.4s ease;
  animation: hero-logo-fade-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
             hero-logo-float 3.5s ease-in-out 1.6s infinite;
}

.hero-logo:hover {
  transform: scale(1.06);
}

@keyframes hero-logo-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-logo-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.85rem, 9vw, 5.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 1), 0 0 48px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: hero-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #eeddb8;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 1), 0 0 36px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.45);
  animation: hero-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-cta {
  margin-top: 0.5rem;
  animation: hero-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .hero-cta {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 169, 98, 0.5);
  box-shadow: 0 4px 24px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-content .hero-cta:hover {
  padding: 1rem 2.25rem;
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 1px rgba(201, 169, 98, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .hero-title {
    letter-spacing: 0.1em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 0, 0, 0.4);
  }
  .hero-subtitle {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 1), 0 0 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.35);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  position: relative;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.5; top: 16px; }
}

/* ========== Sections common ========== */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--black-soft);
}

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 24px rgba(201, 169, 98, 0.15), 0 0 0 1px rgba(201, 169, 98, 0.25);
  transform: scale(1.03);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.55;
  flex: 1;
}

.services-cta {
  text-align: center;
}

/* ========== Opening Offer ========== */
.offer {
  position: relative;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--black-soft) 50%, var(--black) 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
  overflow: hidden;
}

.offer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.offer-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 2rem;
}

.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.offer-price {
  font-size: 1.25rem;
  color: var(--white-muted);
  margin-bottom: 0.25rem;
}

.offer-price .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.offer-desc {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.offer .btn {
  position: relative;
  z-index: 1;
}

/* ========== About ========== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--white-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-content strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 169, 98, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px var(--gold-glow);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--black-card);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item img[src=""],
.gallery-item img:not([src]) {
  min-height: 200px;
  background: var(--black-soft);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 60%, transparent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-label {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), rgba(20, 18, 12, 0.75) 50%, transparent);
  color: var(--gold);
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info .address {
  color: var(--white-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.phone-list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--black-card);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-weight: 500;
  transition: all var(--transition);
}

.phone-list a:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  width: 100%;
  height: 450px;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ========== Footer ========== */
.footer {
  padding: 2rem 0;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-address {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--white-muted);
  opacity: 0.8;
}

/* ========== Floating WhatsApp ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--gold-glow);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px var(--gold-glow);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
  50% { box-shadow: 0 4px 28px rgba(201, 169, 98, 0.5); }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    display: none;
  }

  .phone-list {
    flex-direction: column;
  }
}
/* ===== Premium Mobile Hero Alignment Fix ===== */
@media (max-width: 768px) {

  .hero-bg {
    background-image: url("images/reception-mobile.jpg") ;
    background-position: center center;
  }

  .hero-content {
    padding: 9.5rem 1.2rem 2rem;
    text-align: center;
  }

  .hero-logo {
    display: block;
    margin: -10.5rem auto 2rem;
    width: 85px;
    max-width: 85px;
    animation: none;
    transform: translateX(7px);
    
  }

  .hero-title {
    font-size: clamp(2.3rem, 8vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: 0.12em;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    max-width: 85%;
    margin: 0 auto 1.8rem;
    line-height: 1.6;
  }

  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .hero-scroll {
    display: none;
  }
}
