/* =====================================================
   DJ BOBOY VJENČANJA - MAIN STYLESHEET
   Based on Mockup 2: Dinamični Parallax
   ===================================================== */

/* CSS Variables */
:root {
    --gold: #d4a574;
    --gold-light: #e8b885;
    --gold-dark: #c49660;
    --gold-accent: #ffd700;
    --black: #0a0a0a;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --charcoal: #1e1e1e;
    --white: #ffffff;
    --gray: rgba(255,255,255,0.7);
    --gray-dark: rgba(255,255,255,0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 4rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo img {
    height: 70px;
    transition: height 0.3s ease;
    object-fit: contain;
}

.navbar.scrolled .nav-logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu .nav-cta {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    border-radius: 50px;
}

.nav-menu .nav-cta:hover {
    color: #ffffff !important;
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.35);
}

.nav-menu .nav-cta.active {
    background: var(--gold);
    color: #ffffff !important;
}

.nav-menu .nav-cta::after {
    display: none;
}


/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* =====================================================
   PAGE HEADER (for inner pages)
   ===================================================== */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.9));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   SECTIONS
   ===================================================== */
section {
    padding: 6rem 4rem;
}

.section-dark {
    background: var(--black-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-tag span {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-tag p {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-title span {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background: var(--black-medium);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--black-light);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-main {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: var(--gray);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--black);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-control::placeholder {
    color: var(--gray-dark);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 2rem;
    }
    
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}

/* ============================================
   PREMIUM EFFECTS - WOW FACTOR
   ============================================ */

/* Animated Gold Gradient Text */
.gold-shimmer {
    background: linear-gradient(90deg, #d4a574, #f4d9a0, #d4a574, #b8956e, #d4a574);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

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

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glow Effect */
.glow-gold {
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3),
                0 0 40px rgba(212, 165, 116, 0.2),
                0 0 60px rgba(212, 165, 116, 0.1);
}

/* Premium Button Hover */
.btn-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Parallax Scroll Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Reveal on Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Children Animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-children.active > *:nth-child(1) { animation: fadeInUp 0.6s 0.1s forwards; }
.stagger-children.active > *:nth-child(2) { animation: fadeInUp 0.6s 0.2s forwards; }
.stagger-children.active > *:nth-child(3) { animation: fadeInUp 0.6s 0.3s forwards; }
.stagger-children.active > *:nth-child(4) { animation: fadeInUp 0.6s 0.4s forwards; }
.stagger-children.active > *:nth-child(5) { animation: fadeInUp 0.6s 0.5s forwards; }
.stagger-children.active > *:nth-child(6) { animation: fadeInUp 0.6s 0.6s forwards; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Image Hover Effects */
.photo-item img,
.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.17, 0.55, 0.55, 1), filter 0.5s;
}

.photo-item:hover img,
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Card Hover Lift */
.card-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Magnetic Button Effect (subtle) */
.btn-magnetic {
    transition: transform 0.3s;
}

/* Text Gradient Animation */
.text-gradient-animate {
    background: linear-gradient(45deg, #d4a574, #f4d9a0, #d4a574);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle/Sparkle Background */
.sparkle-bg {
    position: relative;
}

.sparkle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(212,165,116,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212,165,116,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212,165,116,0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(212,165,116,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(212,165,116,0.3), transparent);
    background-size: 200px 200px;
    animation: sparkle 4s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Smooth Section Transitions */
section {
    position: relative;
}

/* Elegant Border Animation */
.border-animate {
    position: relative;
}

.border-animate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.5s;
    transform: translateX(-50%);
}

.border-animate:hover::after {
    width: 100%;
}

/* Premium Nav Scroll Effect */
.navbar {
    transition: all 0.4s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.navbar.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.9) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Testimonial Card Glow */
.review-card {
    transition: all 0.4s;
    border: 1px solid rgba(212,165,116,0.1);
}

.review-card:hover {
    border-color: rgba(212,165,116,0.4);
    box-shadow: 0 0 30px rgba(212,165,116,0.15);
    transform: translateY(-5px);
}

/* Logo Pulse on Load */
.nav-logo img {
    animation: logoPulse 2s ease-in-out;
}

@keyframes logoPulse {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Text Entrance */
.hero-title {
    animation: heroEntrance 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
}

@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    animation: heroEntrance 1.2s 0.2s cubic-bezier(0.17, 0.55, 0.55, 1) both;
}

.hero-text {
    animation: heroEntrance 1.2s 0.4s cubic-bezier(0.17, 0.55, 0.55, 1) both;
}

.hero-buttons {
    animation: heroEntrance 1.2s 0.6s cubic-bezier(0.17, 0.55, 0.55, 1) both;
}

/* Stats Counter Animation */
.stat-number {
    display: inline-block;
}

.stat-item:hover .stat-number {
    animation: countPulse 0.5s;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); color: var(--gold); }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f4d9a0);
    z-index: 10000;
    transition: width 0.1s;
}

/* Mouse Follower Glow (optional - add via JS) */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Service Feature Hover */
.service-feature {
    transition: all 0.3s;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}

.service-feature:hover {
    background: rgba(212,165,116,0.1);
    transform: translateX(5px);
}

.service-feature:hover svg {
    transform: scale(1.2);
}

/* Boutique Card Premium Effect */
.boutique-item {
    transition: all 0.5s cubic-bezier(0.17, 0.55, 0.55, 1);
    position: relative;
    overflow: hidden;
}

.boutique-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(212,165,116,0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
}

.boutique-item:hover::before {
    top: -50%;
    left: -50%;
}

.boutique-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212,165,116,0.2);
    border-color: var(--gold);
}

/* Partner Service Card Effect */
.partner-service {
    transition: all 0.4s;
}

.partner-service:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(212,165,116,0.15);
}

/* Live Instrument Card */
.live-instrument {
    transition: all 0.4s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.live-instrument:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212,165,116,0.3);
    border-color: var(--gold);
}

/* Genre Tag Hover */
.genre-tags span {
    transition: all 0.3s;
}

.genre-tags span:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

/* FAQ Accordion Smooth */
.faq-item {
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(212,165,116,0.05);
}

/* Video Thumbnail Hover */
.shorts-grid .video-card,
.videos-grid .video-card {
    transition: all 0.4s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.shorts-grid .video-card:hover,
.videos-grid .video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* CTA Section Glow */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,165,116,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Smooth Page Load */
body {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer Social Hover */
.footer-social a {
    transition: all 0.3s;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 5px 15px rgba(212,165,116,0.5));
}

/* Selection Color */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================
   PREMIUM WOW EFFECTS
   ============================================ */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Gold gradient text for special headings */
.gold-gradient {
    background: linear-gradient(135deg, #d4a574 0%, #f4d9a0 50%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated gold shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg, #d4a574 0%, #f4d9a0 25%, #ffffff 50%, #f4d9a0 75%, #d4a574 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Glow effect for buttons */
.btn-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5), 0 0 40px rgba(212, 165, 116, 0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

/* Image reveal on scroll */
.reveal-image {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* Text reveal animation */
@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    opacity: 0;
    animation: revealText 0.8s ease forwards;
}

/* Parallax effect for backgrounds */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Glassmorphism card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Elegant hover lift */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 165, 116, 0.1);
}

/* Gold border glow */
.gold-border-glow {
    position: relative;
}

.gold-border-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #d4a574, #f4d9a0, #d4a574);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gold-border-glow:hover::after {
    opacity: 0.5;
}

/* Particle background effect (CSS only) */
.particles-bg {
    position: relative;
    overflow: hidden;
}

.particles-bg::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 165, 116, 0.5);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 
        100px 50px 0 rgba(212, 165, 116, 0.3),
        200px 100px 0 rgba(212, 165, 116, 0.4),
        300px 30px 0 rgba(212, 165, 116, 0.2),
        400px 80px 0 rgba(212, 165, 116, 0.5),
        500px 120px 0 rgba(212, 165, 116, 0.3),
        150px 150px 0 rgba(212, 165, 116, 0.4),
        250px 200px 0 rgba(212, 165, 116, 0.2),
        350px 180px 0 rgba(212, 165, 116, 0.5);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Elegant underline effect */
.elegant-underline {
    position: relative;
    display: inline-block;
}

.elegant-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    transition: width 0.4s ease;
}

.elegant-underline:hover::after {
    width: 100%;
}

/* Counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Image zoom on hover */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom:hover img {
    transform: scale(1.1);
}

/* Gradient border animation */
@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-border {
    position: relative;
    background: var(--black);
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(90deg, #d4a574, #f4d9a0, #d4a574, #f4d9a0);
    background-size: 300% 300%;
    animation: borderGradient 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Spotlight effect on hover */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.spotlight:hover::before {
    opacity: 1;
}

/* Scroll indicator animation */
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Text shadow glow */
.text-glow {
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5), 0 0 20px rgba(212, 165, 116, 0.3), 0 0 30px rgba(212, 165, 116, 0.2);
}

/* Fade in up animation for sections */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Premium card hover */
.premium-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(30,30,30,1) 100%);
}

.premium-card:hover {
    background: linear-gradient(135deg, rgba(30,30,30,1) 0%, rgba(40,40,40,1) 100%);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 50px rgba(212,165,116,0.1);
}

/* Cursor glow effect */
.cursor-glow {
    position: relative;
}

/* Split text reveal */
@keyframes splitReveal {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

.split-reveal {
    animation: splitReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Morphing shape background */
@keyframes morphShape {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.morph-bg {
    animation: morphShape 8s ease-in-out infinite;
}
