/* General */
body {
  font-family: Arial, sans-serif;
  margin:0; padding:0;
  background:#fff; color:#111;
}
nav {
  background:#f7c9f0;
  padding:10px 20px;
  display:flex; gap:20px;
}
nav a { color:#111; text-decoration:none; font-weight:bold; }
nav a:hover { color:#fff; }

/* Hero */


.hero::after {
  content:""; position:absolute; inset:0; background:rgba(0,0,0,0.4);
}
.hero-content { position:relative; max-width:700px; margin:0 auto; z-index:1; }
.hero-content h1 { font-size:3rem; margin-bottom:20px; }
.hero-content p { font-size:1.3rem; margin-bottom:30px; }
.btn-primary {
  background:#f4c5ea; color:#111; padding:15px 30px;
  border-radius:50px; font-weight:bold; text-decoration:none; transition:0.3s;
}
.btn-primary:hover { background:#1a7f37; color:#fff; transform:scale(1.05); }
.hero {
  min-height: 100vh;
  padding:120px 20px;
  text-align:center;
  color:#fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  transition: background-image 1.2s ease-in-out;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Services */
.services { text-align:center; padding:60px 20px; }
.services ul { list-style:none; padding:0; }
.services li { font-size:1.2rem; margin:15px 0; }

/* Booking */
.booking { max-width:600px; margin:60px auto; padding:20px; background:#f9f9f9; border-radius:15px; }
.booking input, .booking select, .booking button { width:100%; padding:12px; margin:10px 0; border-radius:10px; border:1px solid #ccc; }
.booking button { background:#885685; border:none; cursor:pointer; font-weight:bold; }
.booking button:hover { background:#1a7f37; color:#fff; transform:scale(1.05); }

/* Responsive */
@media (max-width:768px){
  .hero-content h1 { font-size:2.2rem; }
  .hero-content p { font-size:1.1rem; }
  .hero { padding:90px 20px; }
}
.gallery img {
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:20px;
}

.gallery .card {
  padding:0;
  overflow:hidden;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 1px;
  color:#c9a24d;
}

.logo-sub {
  display:block;
  font-size:13px;
  letter-spacing:3px;
  color:#888;
  text-transform:uppercase;
}

:root{
  --pink:#e8a1b5;
  --dark:#222;
  --soft:#f66796;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:Montserrat,sans-serif;
  background:var(--soft);
  color:#333;
}

header{
  background:rgb(248, 225, 242);
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:28px;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#444;
}

.btn{
  background:var(--pink);
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  color:white;
  font-weight:600;
}



.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.2s ease-in-out;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
}

.hero p{
  margin:20px 0;
  font-size:18px;
}

.section{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:rgb(231, 159, 207);
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  text-align:center;
}

.card h3{margin-bottom:10px}

.locations{
  background:white;
}


/* ============================= */
/* HERO TEXT ANIMATION FINAL */
/* ============================= */

.hero-content h1 {
  font-family:'Playfair Display', serif;
  font-size:52px;

  opacity: 0;
  transform: translateY(40px);

  animation: heroTitleFade 1.5s ease forwards;
}

.hero-content p {
  opacity: 0;
  transform: translateY(20px);

  animation: heroSubtitleFade 1.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-content .btn-primary {
  opacity: 0;
  transform: scale(0.9);

  animation: heroBtnFade 1.6s ease forwards;
  animation-delay: 0.9s;
}

/* Keyframes */
@keyframes heroTitleFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBtnFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ============================= */
/* HERO SHIMMER TEXT EFFECT */
/* ============================= */

.hero-content h1 {
  background: linear-gradient(
    90deg,
    #f5d27a,
    #ffffff,
    #c9a24d,
    #f2a6db,
    #f5d27a
  );
  background-size: 300%;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    heroTitleFade 1.5s ease forwards,
    shimmerGlow 6s linear infinite;
}

/* Shimmer movement */
@keyframes shimmerGlow {
  0% { background-position: 0% }
  100% { background-position: 300% }
}
.logo{
  background: linear-gradient(
    90deg,
    #f5d27a,
    #ffffff,
    #c9a24d,
    #f2a6db,
    #f5d27a
  );
  background-size: 300%;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    heroTitleFade 1.5s ease forwards,
    shimmerGlow 6s linear infinite;
}

/* Shimmer movement */
@keyframes shimmerGlow {
  0% { background-position: 0% }
  100% { background-position: 300% }
}
/* FOOTER */
.site-footer {
  background: #f4a7e4;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.site-footer h3,
.site-footer h4 {
  color: #d4af37;
  margin-bottom: 15px;
}

.site-footer a {
  display: block;
  color: #f6f2f2;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #faf4f4f4;
  border-top: 1px solid rgba(223, 98, 178, 0.1);
  padding-top: 20px;
}

.premium-footer {
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e1dbe0, #ef54e7);
    text-align: center;
    animation: fadeFooter 1.5s ease-in-out;
}

.footer-links a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00f5ff;
}

@keyframes fadeFooter {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.sticky-social {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.sticky-social .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-social .social-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Individual colors */
.sticky-social .insta { background: linear-gradient(45deg,#feda75,#d62976,#962fbf); }
.sticky-social .fb { background:#1877f2; }
.sticky-social .wa { background: linear-gradient(45deg,#25D366,#128C7E); }
@media (max-width:600px){
    .sticky-social { right: 10px; gap:10px; }
    .sticky-social .social-btn { width:45px; height:45px; font-size:20px; }
}
.sticky-social .email {
    background: linear-gradient(45deg,#ff5722,#ff9800);
}
.chatbot-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff00c8;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.chatbot-float:hover { transform: scale(1.1); }

.chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    color: black;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    z-index: 10000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.chatbox.active { display: flex; }

.chat-header {
    background: #ac76b0;
    color: white;
    padding: 10px;
    border-radius: 15px 15px 0 0;
    font-weight: 600;
    text-align: center;
}

.chat-body {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    flex-grow: 1;
}

.chatbox input {
    border: none;
    padding: 10px;
    border-top: 1px solid #ccc;
    border-radius: 0 0 15px 15px;
    width: 100%;
}
.wa-btn {
  display:inline-block;
  margin:6px 0 18px 0;
  padding:10px 16px;
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:30px;
  cursor:pointer;
  font-size:0.9rem;
  font-weight:600;
  transition:0.3s ease;
}

.wa-btn:hover {
  background:#1ebe5d;
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
}
        .insta-float{
  position:fixed;
  bottom:90px;
  right:20px;
  background:#E1306C;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  z-index:9999;
}
.insta-float:hover{
  transform:scale(1.08);
}
/* Section Title */
.section-title {
  text-align:center;
  margin-bottom:40px;
  font-size:28px;
  font-weight:700;
}

/* Gallery Grid */
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  max-width:1100px;
  margin:0 auto;
}

.gallery-item {
  position:relative;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.4s ease;
}

.gallery-item:hover img {
  transform:scale(1.08);
}

/* Overlay */
.overlay {
  position:absolute;
  bottom:0;
  width:100%;
  padding:12px;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color:#fff;
  font-size:14px;
  font-weight:600;
  text-align:center;
}

/* LIGHTBOX */
#lightbox {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  align-items:center;
  justify-content:center;
  z-index:9999;
}

#lightbox img {
  max-width:90%;
  max-height:80%;
  border-radius:12px;
}

.close-btn {
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}
/* Reviews Section */
.reviews-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
  max-width:1100px;
  margin:0 auto 80px auto;
}

.review-card {
  background:#fff;
  padding:25px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.review-card:hover {
  transform:translateY(-5px);
}

.review-card p {
  font-size:15px;
  color:#555;
  margin-bottom:10px;
}

.review-card h4 {
  font-size:14px;
  color:#111;
  font-weight:600;
}
.review-card .stars {
  color: #d4af37 !important;
  font-size: 18px;
  margin-bottom: 10px;
}

/* GOLD LUXURY COLORS */
:root {
  --gold: #c6a54b;
  --dark: #111111;
  --light: #fdfaf4;
}

/* General Background */
body {
  background: var(--light);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
}

/* Section Spacing */
.section {
  padding: 80px 20px;
}

/* Meet Artist Layout */
.artist-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}

.artist-image img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.artist-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.artist-content h3 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 5px;
}

.artist-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.artist-highlights span {
  display: inline-block;
  margin-right: 15px;
  margin-top: 10px;
  font-size: 14px;
}

/* GOLD BUTTON */
.gold-btn {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #b8902f);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.gold-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 900px){
  .artist-container {
    flex-direction: column;
    text-align: center;
  }

  .artist-image img {
    width: 280px;
  }
}
.gold-star {
  color: #d4af37;
  font-weight: bold;
}