/*
	Relux Massage & Spa - Premium paid-style CSS
	Designed to align perfectly with the clean banner image.
*/

/* 1. Banner & Header Layout */
#widget_container {
    font-family: 'Playfair Display', serif !important; /* Premium, clean font (or Cinzel if available) */
}

/* Define the banner area height to contain the lotus */
#widget_header {
    height: 45vh !important; /* Adjust based on mobile screen height, e.g., 40-50vh */
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding-bottom: 20px !important;
}

/* 2. Style the MENU/HAMBURGER Icon (Making it clean and gold) */
#widget_header .navbar-toggle {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: none !important;
    border: none !important;
}

#widget_header .navbar-toggle .icon-bar {
    background-color: #dfb76c !important; /* Clean gold color */
    height: 3px !important;
    border-radius: 2px !important;
}

/* 3. Style the MAIN BRAND TEXT (Overlaid correctly) */
#widget_container h1.title a {
    color: #dfb76c !important; /* Elegant champagne gold */
    font-size: 2.2em !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-top: 10px !important; /* Position it below the lotus */
    transition: color 0.3s ease !important;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5) !important; /* Add readability */
}

#widget_container h1.title a:hover {
    color: #f3e5ab !important;
}

/* 4. Style the BOOK NOW Button */
#eventForm #save_button {
    background: linear-gradient(135deg, #d4af37 0%, #aa8226 100%) !important; /* Luxury gold gradient */
    color: #0b0e14 !important; /* Dark text for contrast */
    border: none !important;
    border-radius: 50px !important; /* Rounded for elegance */
    padding: 12px 30px !important;
    font-size: 1em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#eventForm #save_button:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(214, 175, 54, 0.4) !important;
}

/* 5. Calendar/Timeline grid (Dark, luxury feel) */
#timeline-container table.timeline {
    background-color: #11151f !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.timeline td.free_time {
    background-color: #161c29 !important;
    color: #f5f5f5 !important;
}

.timeline td.free_time:hover,
.timeline td.selected_time {
    background: #dfb76c !important;
    color: #0b0e14 !important;
    font-weight: bold !important;
}

/* 6. General text clean up */
#events h3, #eventForm #timeline-container h3 {
    color: #dfb76c !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
