/* Global Styles */
:root {
    --primary-color: #8BB5B1;
    --secondary-color: #80A39F;
    --background-color: #fefff9;
    --light-grey: #D4E4E4;
    --dark-grey: #465858;
    --pastel-mint: #ACC0BF;
    --very-light-grey: #E2EBEA;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--background-color);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

/* Component Styles */
.card {
    background-color: var(--very-light-grey);
    border: none;
    transition: all 0.3s ease;
}

/* Shared Section Styles */
.section-title {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: none;
}

.section-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: white;
}

/* Standard Section Padding */
.locations-section,
.featured-treatments,
#vouchers,
.testimonials,
.special-events{
    padding: 50px 0;
}

/* Call to Action Styles */
.cta {
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
    background: var(--background-color);
}

/* Bottom border animation */
.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color),
        transparent);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite reverse;
}

@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.cta-text {
    color: var(--dark-grey);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta {
        padding-top: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Remove the old floating elements */
.cta-float {
    display: none;
}

/* Hero Section Styles moved to css/base/hero.css */

/* Scroll to Booking Button */
.scroll-to-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
}

.scroll-to-booking:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.scroll-to-booking i {
    margin-right: 8px;
}

/* Optional: Hide Button Smoothly */
.scroll-to-booking.hidden {
    opacity: 0;
    pointer-events: none;
}
