/* Luxury Hero Slider - Modern & Classy Design */

/* Core Structure */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: transparent;
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-light: #F9F295;
    --text-shadow: 0 2px 10px rgba(0,0,0,0.12);
    --title-font: 'Cormorant Garamond', serif;
    --subtitle-font: 'Montserrat', sans-serif;
    --accent-font: 'Cinzel', serif;
}

/* Luxury Background Overlay */
.luxury-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('../images/patterns/luxury-pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    z-index: 1;
    pointer-events: none;
}

/* Elegant Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.08), rgba(0,0,0,0.02));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.gold-accent {
    position: absolute;
    background: var(--gold-primary);
    opacity: 0.15;
    filter: blur(8px);
}

.accent-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 25%;
    left: 15%;
    background: radial-gradient(circle at center, var(--gold-light), transparent 70%);
    animation: floatElement 25s infinite ease-in-out;
}

.accent-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    width: 60%;
    top: 45%;
    left: 20%;
    opacity: 0.3;
    animation: pulseLine 8s infinite ease-in-out;
}

.accent-square {
    width: 250px;
    height: 250px;
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    bottom: 15%;
    right: 10%;
    opacity: 0.1;
    transform: rotate(25deg);
    animation: rotateElement 30s infinite linear;
}

/* Decorative Corner Elements */
.corner-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.2;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}

.top-left {
    top: 40px;
    left: 40px;
    background-image: url('../images/decorations/corner-gold-1.png');
}

.top-right {
    top: 40px;
    right: 40px;
    background-image: url('../images/decorations/corner-gold-2.png');
    transform: rotate(90deg);
}

.bottom-left {
    bottom: 40px;
    left: 40px;
    background-image: url('../images/decorations/corner-gold-2.png');
    transform: rotate(270deg);
}

.bottom-right {
    bottom: 40px;
    right: 40px;
    background-image: url('../images/decorations/corner-gold-1.png');
    transform: rotate(180deg);
}

/* Luxury Content Styling */
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.hero-content::before {
    top: -30px;
}

.hero-content::after {
    bottom: -30px;
}

/* Elegant Typography */
.luxury-pretitle {
    font-family: var(--subtitle-font);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 25px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.luxury-pretitle span {
    display: inline-block;
    animation: fadeInBottom 0.8s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--accent-font);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0 0 25px;
    overflow: hidden;
    display: block;
    position: relative;
}

.hero-title .luxury-brand {
    display: block;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #D4AF37 30%, #F9F295 50%, #D4AF37 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: fadeInBottom 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1), shimmerText 8s infinite;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title .by-line {
    display: block;
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    margin-top: 5px;
    letter-spacing: 3px;
    animation: fadeInBottom 0.8s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
}

.luxury-subtitle {
    font-family: var(--title-font);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    margin: 20px 0 35px;
    letter-spacing: 2px;
    line-height: 1.6;
    position: relative;
    animation: fadeInBottom 0.8s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
}

/* Decorative separator */
.luxury-separator {
    position: relative;
    width: 100px;
    height: 10px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.6;
}

.separator-diamond {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    transform: rotate(45deg);
}

/* Elegant CTA Button */
.luxury-cta-container {
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    animation: fadeInBottom 0.8s 1s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--gold-primary);
    font-family: var(--subtitle-font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(249, 242, 149, 0.15) 50%, rgba(212, 175, 55, 0.15) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-button:hover {
    color: var(--gold-secondary);
    border-color: var(--gold-secondary);
    letter-spacing: 4px;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.8s ease;
    z-index: -1;
}

.cta-button:hover::after {
    left: 100%;
}

/* Elegant Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: fadeIn 1s 1.5s forwards;
    opacity: 0;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    opacity: 0.6;
    margin-bottom: 8px;
    animation: scrollPulse 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    opacity: 0.6;
}

.scroll-text {
    font-family: var(--subtitle-font);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-top: 8px;
}

/* Floating Gold Particles */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.gold-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.2;
    filter: blur(1px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(5px);
    }
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -15px); }
    50% { transform: translate(10px, 20px); }
    75% { transform: translate(-15px, 10px); }
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.2; width: 60%; }
    50% { opacity: 0.4; width: 70%; }
}

@keyframes rotateElement {
    from { transform: rotate(25deg); }
    to { transform: rotate(385deg); }
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .corner-decoration {
        width: 100px;
        height: 100px;
    }
    
    .accent-circle {
        width: 200px;
        height: 200px;
    }
    
    .accent-square {
        width: 150px;
        height: 150px;
    }
    
    .top-left, .top-right, .bottom-left, .bottom-right {
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .corner-decoration {
        width: 70px;
        height: 70px;
    }
    
    .top-left {
        top: 20px;
        left: 20px;
    }
    
    .top-right {
        top: 20px;
        right: 20px;
    }
    
    .bottom-left {
        bottom: 20px;
        left: 20px;
    }
    
    .bottom-right {
        bottom: 20px;
        right: 20px;
    }
    
    .luxury-pretitle {
        letter-spacing: 6px;
        margin-bottom: 15px;
    }
    
    .separator-line {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .corner-decoration {
        width: 50px;
        height: 50px;
    }
    
    .hero-title .luxury-brand {
        letter-spacing: 5px;
    }
    
    .luxury-pretitle {
        letter-spacing: 4px;
        font-size: 11px;
    }
    
    .luxury-subtitle {
        letter-spacing: 1px;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 12px;
    }
    
    .accent-circle, .accent-square {
        display: none;
    }
}
