/* ==========================================
   ELEGANT ASYMMETRIC LAYOUT - SP BEAUTY LOUNGE
   Sophisticated Design Implementation
   ========================================== */

/* Import Google Fonts for Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

/* Color Variables for Elegant Theme */
:root {
    --light-gray: #E8E8E8;
    --medium-gray: #F0F0F0;
    --dark-gray: #D0D0D0;
    --gold-accent: #D4AF37;
    --gold-light: #F4E5B8;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8961C 100%);
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-subtle: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 30px rgba(0,0,0,0.12);
}

/* ==========================================
   ELEGANT HERO SECTION - ASYMMETRIC LAYOUT
   ========================================== */

.elegant-hero-section {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 80vh;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    align-items: stretch;
    gap: 0;
}

/* Slider Section Container */
.slider-section {
    overflow: hidden;
    position: relative;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.slider-area {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Left Content Area - Clean Modern Design */
.hero-content-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: none;
    margin: 0;
    overflow: visible;
}

/* Elegant Diagonal White Shapes with Gold Borders */
.hero-content-area::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 150%;
    background: rgba(255, 255, 255, 0.95);
    border-left: 3px solid var(--gold-accent);
    border-right: 2px solid var(--gold-light);
    transform: skewX(-15deg);
    z-index: 0;
    box-shadow: 
        -5px 0 20px rgba(212, 175, 55, 0.15),
        inset 3px 0 10px rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* Secondary diagonal accent shape */
.hero-content-area::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -80px;
    width: 200px;
    height: 60%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(244, 229, 184, 0.3) 100%);
    border-left: 2px solid var(--gold-accent);
    border-right: 1px solid var(--gold-light);
    transform: skewX(-12deg);
    z-index: 0;
    box-shadow: -3px 0 15px rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* Left side diagonal shape for image area */
.hero-image-area::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 150%;
    background: rgba(255, 255, 255, 0.95);
    border-right: 3px solid var(--gold-accent);
    border-left: 2px solid var(--gold-light);
    transform: skewX(-15deg);
    z-index: 3;
    box-shadow: 
        5px 0 20px rgba(212, 175, 55, 0.15),
        inset -3px 0 10px rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* Decorative corner elements */
.slider-area::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold-accent);
    border-left: 3px solid var(--gold-accent);
    z-index: 10;
    pointer-events: none;
    opacity: 0.7;
}

.slider-area::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--gold-accent);
    border-right: 3px solid var(--gold-accent);
    z-index: 10;
    pointer-events: none;
    opacity: 0.7;
}

/* Content Wrapper - Clean Modern Card */
.content-wrapper {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    border: none;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 4px 20px rgba(0,0,0,0.08);
    z-index: 10;
    position: relative;
    overflow: visible;
}

/* Additional text safety barrier */
.content-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

/* Decorative Element - Gold Line Above Content */
.content-wrapper::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
}

/* ==========================================
   TYPOGRAPHY UPGRADE - SERIF & SANS-SERIF
   ========================================== */

/* Primary Elegant Heading - Clean Modern Style */
.elegant-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
    letter-spacing: -0.02em;
    z-index: 15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Gold Accent Line Under Heading */
.elegant-heading::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 2px;
}

/* Subtitle - Clean Modern Style */
.elegant-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #495057;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Description Text - Clean Modern Style */
.elegant-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #6c757d;
    max-width: 100%;
    z-index: 15;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ==========================================
   GOLD ACCENT BUTTONS
   ========================================== */

.gold-button {
    background: var(--gold-gradient);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 16px 35px;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 20;
    background-clip: padding-box;
}

/* Shimmer Effect on Hover */
.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.gold-button:hover::before {
    left: 100%;
}

/* Enhanced Hover States */
.gold-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E6C547 0%, #C9A227 100%);
    color: #ffffff;
}

/* Icon next to button - Enhanced */
.gold-button::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-button:hover::after {
    transform: translateX(5px);
}

/* Active state for button */
.gold-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   RIGHT IMAGE AREA - DRAMATIC DIAGONAL SHAPE
   ========================================== */

.hero-image-area {
    position: relative;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Subtle vignette for image depth */
.hero-image-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* ==========================================
   GEOMETRIC MICRO-DETAILS
   ========================================== */

/* Decorative geometric elements around content */
.content-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold-accent);
    border-right: 2px solid var(--gold-accent);
    z-index: -1;
    pointer-events: none;
}

/* Bottom left decorative corner */
.hero-content-area .content-wrapper {
    position: relative;
}

.hero-content-area .content-wrapper::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
    z-index: -1;
    pointer-events: none;
}

/* Small accent diamonds */
.elegant-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold-accent);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 5;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Diagonal line accents */
.elegant-hero-section::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--gold-accent), transparent);
    transform: translateX(-50%) rotate(15deg);
    z-index: 5;
    opacity: 0.2;
}

/* ==========================================
   CAROUSEL CUSTOMIZATIONS
   ========================================== */

.slider-activation {
    position: relative;
}

.single-slider-wrap {
    position: relative;
    min-height: 100vh;
}

/* Owl Carousel Navigation */
.owl-dots-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.owl-dots {
    display: flex;
    gap: 1rem;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet Portrait */
@media (max-width: 1024px) {
    .elegant-hero-section {
        grid-template-columns: 50% 50%;
        min-height: 65vh;
        max-height: 75vh;
    }
    
    .elegant-heading {
        font-size: 2.2rem;
    }
    
    .hero-content-area {
        padding: 2rem 1.5rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem;
        max-width: 98%;
    }
    
    .elegant-subtitle {
        font-size: 1.1rem;
    }
    
    .elegant-description {
        font-size: 0.9rem;
    }
    
    .gold-button {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* Ensure proper containment on all containers */
@media (max-width: 1200px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .elegant-hero-section {
        min-height: 75vh;
    }
}

/* Mobile Landscape & Tablet */
@media (max-width: 768px) {
    .elegant-hero-section {
        grid-template-columns: 1fr;
        min-height: 80vh;
    }
    
    .hero-content-area {
        padding: 1.5rem 1rem;
        min-height: 45vh;
        border-radius: 0;
        margin: 0;
    }
    
    /* Hide large diagonal shapes on mobile */
    .hero-content-area::before,
    .hero-image-area::before {
        display: none;
    }
    
    /* Adjust secondary shapes */
    .hero-content-area::after {
        width: 100px;
        right: -30px;
    }
    
    /* Simplify corner decorations */
    .slider-area::before,
    .slider-area::after {
        width: 40px;
        height: 40px;
    }
    
    .slider-area::before {
        top: 20px;
        left: 20px;
    }
    
    .slider-area::after {
        bottom: 20px;
        right: 20px;
    }
    
    .elegant-heading {
        font-size: 1.8rem;
        padding: 0.5rem 0.7rem;
    }
    
    .elegant-subtitle {
        font-size: 1rem;
        padding: 0.3rem 0.5rem;
    }
    
    .elegant-description {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
        line-height: 1.3;
    }
    
    .content-wrapper {
        padding: 1rem 0.8rem;
        max-width: 100%;
    }
    
    .gold-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .content-wrapper::after,
    .content-wrapper::before {
        width: 50px;
        height: 50px;
    }
    
    /* Hide center decorative elements on mobile */
    .elegant-hero-section::before,
    .elegant-hero-section::after {
        display: none;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-content-area {
        padding: 2rem 1rem;
    }
    
    .elegant-heading {
        font-size: 1.8rem;
    }
    
    .elegant-subtitle {
        font-size: 1.1rem;
    }
    
    .elegant-description {
        font-size: 1rem;
    }
    
    .gold-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   ELEGANT HOVER STATES & ANIMATIONS
   ========================================== */

/* Subtle animation for content */
.hero-content-area {
    transition: all 0.5s ease;
}

.hero-content-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* Animated geometric shapes */
@keyframes floatDiagonal {
    0%, 100% {
        transform: skewX(-15deg) translateY(0);
    }
    50% {
        transform: skewX(-15deg) translateY(-10px);
    }
}

@keyframes pulseGold {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes shimmerLine {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

/* Apply animations to geometric elements */
.hero-content-area::before {
    animation: floatDiagonal 8s ease-in-out infinite;
}

.elegant-hero-section::before {
    animation: pulseGold 4s ease-in-out infinite;
}

.elegant-hero-section::after {
    animation: shimmerLine 6s ease-in-out infinite;
}

.slider-area::before,
.slider-area::after {
    transition: all 0.3s ease;
}

.slider-area:hover::before,
.slider-area:hover::after {
    border-color: var(--gold-light);
    opacity: 1;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .gold-button,
    .hero-content-area {
        transition: none;
    }
    
    .gold-button:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.gold-button:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* ==========================================
   FALLBACK STYLES FOR OLDER BROWSERS
   ========================================== */

/* Fallback for background-attachment: fixed */
@supports not (background-attachment: fixed) {
    .hero-image-area {
        background-attachment: scroll;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .elegant-hero-section {
        display: block;
    }
    
    .hero-image-area {
        display: none;
    }
}