/*
 * Custom Stylesheet for Praan Spa - Black & Gold Theme
 * Author: Gemini
 * Version: 1.2
 */

/* 1. Global Styles & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-playfair-display {
    font-family: 'Playfair Display', serif;
}

/* 2. Helper Classes */
.bg-brand-dark { background-color: #121212; }
.bg-brand-darker { background-color: #0A0A0A; }
.text-brand-gold { color: #D4AF37; } 
.border-brand-gold { border-color: #D4AF37; }
.text-brand-light { color: #E0E0E0; }

/* 3. Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background-color: #D4AF37;
    color: #121212;
    border: 1px solid #D4AF37;
}

.btn-primary:hover {
    background-color: #c09b2e;
    border-color: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    border-radius: 7px;
    padding: 7px;
    background-color: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.btn-secondary:hover {
    background-color: #D4AF37;
    color: #121212;
    transform: translateY(-2px);
}

/* 4. Navigation Bar */
#top-bar {
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

#main-nav.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#main-nav .nav-link {
    position: relative;
    color: #E0E0E0;
    transition: color 0.3s ease;
}

#main-nav .nav-link:hover {
    color: #D4AF37;
}

#main-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #D4AF37;
    transition: width .3s ease;
}

#main-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
    background: #D4AF37;
}

/* 5. Floating Action Buttons (Candy Box Style) */
.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.fab-main, .fab-child {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: white;
}

.fab-main {
    background-color: #555;
    z-index: 20;
    box-shadow: 10px 10px 5px 0px rgba(230,230,230,0.05);
-webkit-box-shadow: 10px 10px 5px 0px rgba(230,230,230,0.05);
-moz-box-shadow: 10px 10px 5px 0px rgba(230,230,230,0.05);
}

.fab-main.fab-active {
    transform: rotate(45deg);
}

.fab-child {
    position: absolute;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.fab-container.fab-active .fab-child {
    opacity: 1;
    visibility: visible;
    position: relative;
    margin-bottom: 15px;
}

.fab-container.fab-active .fab-child:nth-child(2) { transform: translateY(0) scale(1); transition-delay: 0.1s; } /* Back to Top */
.fab-container.fab-active .fab-child:nth-child(3) { transform: translateY(0) scale(1); transition-delay: 0.2s; } /* LINE */
.fab-container.fab-active .fab-child:nth-child(4) { transform: translateY(0) scale(1); transition-delay: 0.3s; } /* Tel */

.fab-child:hover {
    transform: scale(1.1);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1a1a1a;
    color: #E0E0E0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.fab-child:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}
#chat-widget-window {
    margin-right: 4%;
}
#chat-widget-toggle{
        margin-bottom: 10px;
}
a.btn-tertiary.open-booking-modal.mt-auto  {
    background-color: #d4af37;
    margin: 5px;
    color: #19191a;
    border-radius: 5px;
    padding: 5px;
}
.text-stone-400 {
    color: #E0E0E0;
}