/* Madison’s Velvet Escape — Luxury Theme */
:root{
  --bg:#0d0b0c;
  --bg-velvet: radial-gradient(1200px 600px at 20% 10%, rgba(128,0,32,0.18), transparent 50%),
               radial-gradient(1000px 500px at 80% 20%, rgba(184,24,60,0.14), transparent 60%),
               #0b0a0b;
  --gold:#f5d67b;
  --gold-2:#ffd166;
  --rose:#8b1431;
  --soft:#e9e3d7;
  --muted:#c9c2b6;
  --card:rgba(255,255,255,0.05);
  --card2:rgba(255,255,255,0.08);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, Arial, sans-serif;
  color: rgba(255,255,255,0.92);
  background: var(--bg-velvet);
  line-height:1.7;
}

.container{width:min(1100px, 92%);margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(10,10,10,0.6);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.8rem 0}
.logo{display:flex;flex-direction:column;line-height:1}
.logo-top{font-family:"Playfair Display",serif;font-weight:700;letter-spacing:.5px;color:var(--gold)}
.logo-bottom{font-family:"Playfair Display",serif;font-weight:900;font-size:1.1rem;text-transform:uppercase;letter-spacing:2.5px}

.hamburger{width:46px;height:38px;border:1px solid rgba(255,255,255,.2);border-radius:10px;background:transparent;display:flex;align-items:center;justify-content:center;gap:4px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:linear-gradient(90deg,var(--gold),#fff)}
.nav{display:none;flex-direction:column;padding:0 0 0.8rem}
.nav.open{display:flex;animation:dropdown .25s ease}
.nav a{padding:0.8rem 1rem;text-decoration:none;color:#f2f2f2;border-top:1px solid rgba(255,255,255,0.06)}
.nav a:hover{background:rgba(255,255,255,0.06)}
@keyframes dropdown{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}

.section{padding:4rem 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00))}
.section-title{
  font-family:"Playfair Display",serif;
  font-size:2.1rem;font-weight:800;letter-spacing:.6px;
  color:var(--gold);text-align:center;margin:0 0 2rem
}
.narrow{max-width:820px;margin:0 auto}

.btn{
  display:inline-block;padding:0.9rem 1.2rem;border-radius:999px;border:none;
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#161616;font-weight:700;text-decoration:none;box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover{transform:translateY(-2px);filter:saturate(110%);box-shadow:0 14px 28px rgba(0,0,0,.35)}

.hero{padding:7rem 0 5rem;background:
  radial-gradient(800px 400px at 70% 0%, rgba(255,214,102,0.08), transparent 60%),
  radial-gradient(900px 500px at 30% 10%, rgba(139,20,49,0.25), transparent 55%)}
.brand{font-family:"Playfair Display",serif;font-size:2.6rem;letter-spacing:.6px;text-align:center;margin:0 0 .6rem}
.brand span{display:block;font-size:clamp(2.2rem,6vw,4rem);text-transform:uppercase;letter-spacing:4px}
.tagline{text-align:center;color:var(--muted);margin:0 0 1.4rem}

.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem}
.card{background:var(--card);border:1px solid rgba(255,255,255,0.08);padding:1rem;border-radius:16px;box-shadow:var(--shadow)}
.card h3{font-family:"Playfair Display",serif;margin:.4rem 0 .4rem;color:#fff}
.card p{color:rgba(255,255,255,0.85)}

.pricing{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.8rem}
.price-item{display:flex;align-items:center;justify-content:space-between;background:var(--card2);border:1px solid rgba(255,255,255,0.08);padding:0.9rem 1rem;border-radius:14px}
.price-item strong{color:var(--gold)}

.menu-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.2rem}
.menu-heading{font-family:"Playfair Display",serif;margin:.3rem 0 .6rem}
.list{margin:.2rem 0 0.2rem 1rem}
.list li{margin:.4rem 0}


.ph{aspect-ratio:1/1;border-radius:12px;background:
    linear-gradient(135deg, rgba(245,214,123,0.15), rgba(245,214,123,0.05)),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border:1px dashed rgba(255,255,255,0.2)}

.form .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.8rem}
label{display:flex;flex-direction:column;gap:.35rem;font-weight:600}
input,select,textarea{
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,.12);
  border-radius:12px;padding:0.75rem;color:#fff;outline:none
}
input:focus,select:focus,textarea:focus{border-color:var(--gold)}
.tiny{font-size:.8rem;color:var(--muted)}

.reviews{display:grid;gap:1rem}
blockquote{margin:0;padding:1rem;background:var(--card);border:1px solid rgba(255,255,255,0.08);border-radius:14px}
blockquote footer{color:var(--muted)}

.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:.8rem}
.chip{display:flex;align-items:center;gap:.5rem;background:var(--card2);border:1px solid rgba(255,255,255,0.08);padding:.8rem 1rem;border-radius:999px}
.chip .dot{margin-left:auto;width:10px;height:10px;border-radius:50%;background:#2ecc71;box-shadow:0 0 8px rgba(46,204,113,.7)}

.site-footer{padding:2rem 0;border-top:1px solid rgba(255,255,255,0.08);text-align:center;color:var(--muted)}
code{color:var(--gold)}

@media(min-width:900px){
  .brand{font-size:3rem}
}





.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



/* --- Gallery Grid (3x3 fixed) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



/* --- Booking Form Styles --- */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.booking-form button.btn {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #1a1a1a;
  font-weight: 600;
  padding: 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.booking-form button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Success message */
#bookingMessage {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 128, 0, 0.15);
  color: #00ff88;
  border: 1px solid rgba(0,255,136,0.5);
  border-radius: 8px;
}



/* --- Reviews Section --- */
.reviews-list p {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.review-form {
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.review-form h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--accent, #ffd166);
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  margin-bottom: 1rem;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.review-form button.btn {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #1a1a1a;
  font-weight: 600;
  padding: 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.review-form button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}



/* --- Contact Section --- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-grid .contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-grid .contact:hover {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.contact-grid .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  margin-left: 0.4rem;
}



/* --- Floating Contact Bubbles --- */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 1000;
}

.floating-contact .bubble {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.floating-contact .bubble:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #1a1a1a;
}


/* --- Enhancements (Oct 2025) --- */
.review-form{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.review-form h3{
  text-align:center;
  margin-top:0;
}
.floating-contact{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.floating-contact .bubble{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;height:56px;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  text-decoration:none;
  font-size: 22px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.floating-contact .bubble:hover{ transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.25); }


/* --- Hamburger Menu Styles --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 1rem;
    border-radius: 8px;
  }
  .site-nav.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}


/* --- Custom Gold Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  transition: all 0.3s ease;
}

/* Animate into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  }
  .site-nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
