/* ==========================================
   BookMyBoutique Premium Design System
   ========================================== */

:root {
    /* Color Palette - Feminine / Luxury Boutique */
    --primary: hsl(338, 55%, 38%);       /* Rich Deep Berry / Plum (#943058) */
    --secondary: hsl(15, 70%, 70%);     /* Warm Rose Gold Accent (#e8967a) */
    --accent: hsl(345, 45%, 80%);        /* Soft Champagne Pink (#e8b4c0) */
    --light: hsl(340, 40%, 97%);         /* Warm Pearl Blush Background (#fdf5f7) */
    --dark: hsl(320, 20%, 18%);          /* Deep Plum Charcoal Text/Footer (#342029) */
    
    --white: #FFFFFF;
    --text-muted: rgba(52, 32, 41, 0.7);
    
    /* Layout & Shadows */
    --shadow-sm: 0 4px 12px rgba(148, 48, 88, 0.04);
    --shadow-md: 0 8px 24px rgba(148, 48, 88, 0.08);
    --shadow-lg: 0 16px 40px rgba(148, 48, 88, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Glassmorphism Navigation */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 245, 247, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(148, 48, 88, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-bottom: 0;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Buttons */
.btn-boutique {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-boutique-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
}

.btn-boutique-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-boutique-secondary {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-boutique-secondary:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Premium Card Designs */
.card-boutique {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 48, 88, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card-boutique:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 150, 122, 0.3);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-boutique:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* Hero Section */
.hero-boutique {
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 10% 20%, rgba(253, 245, 247, 0.9) 0%, rgba(232, 180, 192, 0.15) 100%);
    position: relative;
}

/* Timeline Layout */
.timeline-boutique {
    position: relative;
    padding: 40px 0;
}

.timeline-boutique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--secondary));
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-step:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-step:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-badge {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 10;
}

.timeline-step:nth-child(odd) .timeline-badge {
    right: -20px;
}

.timeline-step:nth-child(even) .timeline-badge {
    left: -20px;
}

/* Footer styling */
footer.boutique-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

footer.boutique-footer h5 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

footer.boutique-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

footer.boutique-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

footer.boutique-footer a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .timeline-boutique::before {
        left: 30px;
    }
    
    .timeline-step {
        width: 100% !important;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-step:nth-child(odd) .timeline-badge,
    .timeline-step:nth-child(even) .timeline-badge {
        left: 10px;
    }
}
