:root {
  --ruby-dark: #b71c63;
  --ruby-mid: #d83b7e;
  --ruby-light: #f06a9b;
}

html, body {
  height: 100%;
}

body {
  background: #fff;
}

/* Left brand vertical bar */
.left-bar {
  border-right: 0;
}

.brand-vertical {
  transform: none;
  max-height: 85vh;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Hero with background image */
.hero {
  background-image: url('bg_image01.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
}

/* Overlay menu */
.menu-overlay {
  position: absolute;
  top: 10%;
  left: 2rem;
  z-index: 2;
}

.menu-overlay ul li {
  margin: 0.5rem 0;
}

.menu-overlay a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 3.2vw, 2.4rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.menu-overlay a:hover {
  color: var(--ruby-light);
}

/* Active state (mobile click) */
.menu-overlay a.active {
  color: var(--ruby-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Anchor placeholders for now */
.anchor-spacer {
  height: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .brand-vertical { max-width: 120px; }
  .menu-overlay { left: 1rem; top: 12%; }
  .menu-overlay ul li { margin: 0.35rem 0; }
  .menu-overlay a { font-size: clamp(1rem, 5vw, 1.6rem); }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}