/*
Theme Name: Gracious Glamour V2
Theme URI: https://example.com/gracious-glamour-v2
Author: Your Name
Author URI: https://yourwebsite.com
Description: A modern luxury beauty salon theme for Gracious Glamour.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gracious-glamour-v2
Tags: custom-background, custom-header, custom-menu, featured-images, flexible-header, full-width-template, light, one-column, responsive-layout, rtl-language-support, sticky-post, theme-options, translation-ready
*/

/* Custom CSS from HTML <style> block */
:root {
    --transition-all: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F8F4E9;
    color: #5a5a5a;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: #5a3a3f;
}

.hero {
    background: linear-gradient(135deg, rgba(212, 166, 177, 0.85) 0%, rgba(154, 123, 127, 0.9) 100%), url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.service-card {
    transition: var(--transition-all);
    box-shadow: 0 10px 20px rgba(154, 123, 127, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(154, 123, 127, 0.2);
}

.service-icon {
    transition: var(--transition-all);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #E6C9A1;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-3 {
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stylist-card:hover .stylist-overlay {
    opacity: 1;
    transform: scale(1);
}

.stylist-overlay {
    transition: var(--transition-all);
    opacity: 0;
    transform: scale(0.9);
}

.testimonial-card {
    box-shadow: 0 10px 30px rgba(154, 123, 127, 0.15);
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    transition: var(--transition-all);
    border: 1px solid #E8D0D6;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    border-color: #D4A6B1;
    box-shadow: 0 0 0 3px rgba(212, 166, 177, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #D4A6B1 0%, #B88C97 100%);
    transition: var(--transition-all);
    box-shadow: 0 4px 15px rgba(212, 166, 177, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 166, 177, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #D4A6B1;
    transition: var(--transition-all);
}

.btn-secondary:hover {
    background: #D4A6B1;
    color: white;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E6C9A1;
    transition: var(--transition-all);
}

.nav-link:hover::after {
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #E6C9A1;
    margin: 15px auto 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: var(--transition-all);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    transition: var(--transition-all);
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.social-icon {
    transition: var(--transition-all);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #E6C9A1;
}

.scroll-top {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 166, 177, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(212, 166, 177, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 166, 177, 0); }
}
