
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Fauna+One&display=swap');

/* Global Styles */
body, html { 
    margin: 0; padding: 0; background-color: #242424; 
    color: #d1c7b1; font-family: 'Fauna One', serif;
    scroll-behavior: smooth; overflow-x: hidden;
    cursor: default;
    scroll-padding-top: 75px; /* Adds space so the fixed nav doesn't cover content */
}

/* Fixed Navigation Bar */
.site-nav {
    position: fixed; top: 0; width: 100%; z-index: 10000;
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    display: flex; justify-content: center; align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
}

.site-nav a {
    color: #d4af37; text-decoration: none; margin: 0 15px;
    font-family: 'Cinzel', serif; letter-spacing: 2px; font-size: 0.9rem;
    transition: color 0.3s;
}

.site-nav a:hover { color: #fff; }

/* Services Section */
.services-section { padding: 100px 10%; background: #2a2a2a; color: #d1c7b1; }
.services-section h2 { font-family: 'Cinzel', serif; color: #d4af37; text-align: center; font-size: 2.2rem; }
.services-list { max-width: 800px; margin: 40px auto; list-style-type: none; padding: 0; }
.services-list li { 
    margin-bottom: 20px; padding-left: 30px; position: relative; font-size: 1.1rem;
    line-height: 1.6;
}
.services-list li::before { 
    content: "✦"; position: absolute; left: 0; color: #d4af37; 
}
        
/* Magical Pixie Dust FX Styles */
.sparkle-trail {
    position: fixed;
    pointer-events: none;
    background: #fff;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 0 10px 1px var(--glow);
    animation: pixie-fade 1.5s cubic-bezier(0.1, 0.4, 0.4, 1) forwards;
}

@keyframes pixie-fade {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: translate(var(--dx), var(--dy)) scale(0) rotate(360deg); opacity: 0; }
}

.magical-pop {
    position: fixed;
    pointer-events: none;
    width: 3px;
    height: 3px;
    background: white;
    z-index: 11000;
    border-radius: 50%;
    animation: pop-out 0.8s ease-out forwards;
}

@keyframes pop-out {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* Reusable Elegant Frame (No Corner Filigrees) */
.filigree-frame {
    position: relative;
    padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 30px 60px rgba(0,0,0,0.7);
    border-radius: 4px;
}

/* Hero Section */
.hero-banner {
    position: relative;
    background: url('../Images/hero.png') no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute; bottom: 0; width: 100%; height: 50%;
    background: linear-gradient(transparent, #242424);
    z-index: 1;
}

.hero-text { position: relative; z-index: 2; margin-bottom: 80px; padding: 0 20px; }

/* Raised Brass Hero Text */
h1 {
    font-family: 'Cinzel', serif; 
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin: 0; 
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 0.1em;
    font-weight: 700;
    background: linear-gradient(to bottom, #e5c687 0%, #d4af37 45%, #a67c00 55%, #8a6d3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 235, 180, 0.5); /* Highlight Outline */
    text-shadow: 2px 4px 10px rgba(0,0,0,0.9); /* Single Layer Shadow */
    transform: translateZ(0); 
    white-space: nowrap; 
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem); 
    font-style: italic;
    color: #bfa57d; 
    margin-top: 10px; 
    text-transform: uppercase; 
    letter-spacing: 8px;
    text-shadow: 0.05em 0.05em 0 rgba(255,255,255,0.1), 0.1em 0.1em 0.25em rgba(0,0,0,0.8);
}

/* Intro Section Styles */
.intro-section {
    padding: 100px 15%;
    text-align: center;
    background: radial-gradient(circle at center, #333333 0%, #242424 100%);
    position: relative;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: #e5c687;
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.intro-quote::before, .intro-quote::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #d4af37;
    margin: 20px auto;
    opacity: 0.5;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1c7b1;
    opacity: 0.8;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.intro-text span.highlight {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

/* GALLERY & CAROUSEL */
.gallery-section { padding: 100px 10%; background: #242424; text-align: center; }

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-item {
    min-width: 100%;
    height: 500px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.4) contrast(1.1) brightness(0.9);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 26, 21, 0.8);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #d4af37;
    color: #1e1a15;
}
.carousel-btn.prev { left: 0; border-radius: 0 4px 4px 0; }
.carousel-btn.next { right: 0; border-radius: 4px 0 0 4px; }

/* VIDEO REEL SECTION */
.video-section {
    padding: 80px 10%;
    background: radial-gradient(circle at center, #333333 0%, #242424 100%);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.video-container video {
    width: 100%;
    display: block;
    filter: sepia(0.4) contrast(1.1) brightness(0.9);
}

/* Lightbox Interactions overrides for carousel */
.photo-frame {
    position: relative;
    background: #1e1a15; 
    padding: 0;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.caption { 
    display: none; 
}

/* Lightbox Modal */
#lightbox {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    width: 85vw; height: 85vh;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.65); 
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-out; 
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    box-shadow: 0 0 100px rgba(0,0,0,0.8);
}

#lightbox.active { display: flex; opacity: 1; }

#lightbox-content-container {
    max-width: 80%; max-height: 75%;
    transform: scale(0.6) translateY(20px);
    transition: transform 1.0s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1.0s ease; 
    opacity: 0;
    position: relative;
}

#lightbox.active #lightbox-content-container {
    transform: scale(1) translateY(0); opacity: 1;
}

#lightbox-img, #lightbox-video {
    max-width: 100%; max-height: 75vh;
    border: 2px solid #d4af37;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    display: none;
}

#lightbox-caption {
    position: absolute;
    bottom: -50px; left: 0; width: 100%; text-align: center;
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: clamp(1rem, 4vw, 1.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Cinzel', serif;
    color: #d1c7b1;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.close-lightbox:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

/* Contact Section */
.contact-wrap {
    padding: 120px 5%; 
    background: radial-gradient(circle, #333333 0%, #242424 100%);
    display: flex; justify-content: center;
}

.contact-card {
    width: 100%; max-width: 700px;
    text-align: center;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.contact-link:hover { opacity: 0.7; }

/* GLASS WAX SEAL BUTTON */
.wax-seal {
    display: inline-flex; align-items: center; justify-content: center;
    margin: 40px auto 0; padding: 22px 60px;
    background: radial-gradient(circle at 30% 30%, rgba(100, 0, 0, 0.6), rgba(40, 0, 0, 0.75));
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 60px;
    font-family: 'Cinzel', serif; font-weight: bold; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 2px; cursor: pointer;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3), inset 0 0 10px rgba(80, 0, 0, 0.3);
    transition: all 0.5s ease;
    text-decoration: none;
}

.wax-seal:hover {
    transform: scale(1.03);
    background: radial-gradient(circle at 30% 30%, rgba(139, 0, 0, 0.7), rgba(60, 0, 0, 0.85));
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
    color: #fff;
}

footer { text-align: center; padding: 60px 40px; font-size: 0.8rem; opacity: 0.4; letter-spacing: 2px; }
