/* --- RESET & GOOGLE FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #111111;
    color: #ffffff;
    overflow-x: hidden;
}

/* --- HERO SECTION: FULL SCREEN BACKGROUND --- */
.hero-container { 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    width: 100%; 
    background-color: #111111;
    /* FIX: Lightened the dark fade here (from 0.70 down to 0.40) so the building shows clearly! */
    background-image: linear-gradient(rgba(17, 17, 17, 0.40), rgba(17, 17, 17, 0.90)), url('building.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    overflow: hidden; 
}

/* --- FLOATING BORDER STYLES (MOBILE ONLY) --- */
.mobile-border {
    position: absolute;
    width: 100%;
    display: none; 
    justify-content: space-around;
    align-items: center;
    padding: 0 15px;
    z-index: 1;
}

.gold-icon {
    width: 50px; 
    height: auto;
    opacity: 0.95; 
    mix-blend-mode: screen; 
}

/* The magic that makes them float up and down */
@keyframes hoverFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Different speeds so they don't look robotic */
.float-1 { animation: hoverFloat 3.5s ease-in-out infinite; }
.float-2 { animation: hoverFloat 4.2s ease-in-out infinite reverse; }
.float-3 { animation: hoverFloat 3.8s ease-in-out infinite 1s; }

/* --- GOLDEN DUST ANIMATION --- */
.dust-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1;
}

.dust-particles::before, .dust-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e4aa36;
    border-radius: 50%;
    box-shadow: 
        10vw 20vh #e4aa36, 30vw 50vh #e4aa36, 50vw 80vh #e4aa36, 70vw 10vh #e4aa36, 90vw 60vh #e4aa36,
        20vw 80vh #e4aa36, 40vw 10vh #e4aa36, 60vw 40vh #e4aa36, 80vw 90vh #e4aa36, 95vw 30vh #e4aa36,
        15vw 45vh #e4aa36, 35vw 75vh #e4aa36, 55vw 25vh #e4aa36, 75vw 65vh #e4aa36, 85vw 15vh #e4aa36,
        5vw 95vh #e4aa36, 25vw 35vh #e4aa36, 45vw 85vh #e4aa36, 65vw 55vh #e4aa36, 98vw 5vh #e4aa36;
    animation: float-dust 20s linear infinite;
    opacity: 0.5;
}

.dust-particles::after {
    width: 2px;
    height: 2px;
    box-shadow: 
        12vw 25vh #e4aa36, 32vw 55vh #e4aa36, 52vw 85vh #e4aa36, 72vw 15vh #e4aa36, 92vw 65vh #e4aa36,
        22vw 85vh #e4aa36, 42vw 15vh #e4aa36, 62vw 45vh #e4aa36, 82vw 95vh #e4aa36, 97vw 35vh #e4aa36;
    animation: float-dust 15s linear infinite reverse;
    opacity: 0.3;
}

@keyframes float-dust {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-30px) translateX(20px); }
    66% { transform: translateY(15px) translateX(-15px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* --- PERFECTLY CENTERED NAVIGATION --- */
.top-nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px; 
    letter-spacing: 2px; 
    position: absolute; 
    top: 40px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.nav-links a { 
    color: #888; 
    text-decoration: none; 
    margin-left: 30px; 
    transition: color 0.3s ease; 
}

.nav-links a:hover { 
    color: #e4aa36; 
}

/* --- PERFECTLY CENTERED MAIN TEXT --- */
.main-text { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2; 
}

.brand-title { 
    font-family: 'Permanent Marker', cursive; 
    font-size: 85px; 
    line-height: 1.1; 
    color: #e4aa36; 
    margin-bottom: 20px; 
    text-shadow: 0px 5px 15px rgba(0,0,0,0.8); 
}

.subtext { 
    font-size: 14px; 
    color: #ccc; 
    margin: 0 auto 40px auto; 
    line-height: 1.6; 
    letter-spacing: 2px; 
}

.signup-btn { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #fff; 
    text-decoration: none; 
    letter-spacing: 5px; 
    font-size: 15px; 
    position: relative; 
    font-weight: bold; 
    padding-left: 15px;
}

.gold-square { 
    width: 45px; 
    height: 45px; 
    background-color: #e4aa36; 
    position: absolute;
    left: -15px;
    z-index: -1; 
    opacity: 0.9; 
}

/* --- PROMO SLIDER STYLES --- */
.promo-section {
    background-color: #080808;
    padding: 60px 0 20px 0;
    border-top: 1px solid #222;
    overflow: hidden; 
}

.promo-title {
    text-align: center;
    color: #888;
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 20px 0 30px -10px #080808, inset -20px 0 30px -10px #080808; 
}

.slider-track {
    display: flex;
    width: calc(320px * 10); 
    animation: scroll 25s linear infinite; 
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-track img {
    width: 300px;
    height: 200px;
    object-fit: cover; 
    border-radius: 8px;
    margin: 0 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slider-track img:hover {
    transform: scale(1.05); 
    border-color: #e4aa36;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 5)); } 
}

/* --- EXPLORE MENU STYLES --- */
.explore-section { background-color: #111; padding: 40px 10% 80px 10%; text-align: center; }
.explore-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.explore-btn { background-color: #080808; color: #e4aa36; border: 1px solid #e4aa36; padding: 15px 30px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; border-radius: 5px; transition: all 0.3s ease; }
.explore-btn:hover { background-color: #e4aa36; color: #000; }

/* --- PREMIUM CONTACT SECTION STYLES --- */
.contact-section { background-color: #080808; padding: 100px 10%; display: flex; justify-content: space-between; align-items: center; gap: 60px; border-top: 1px solid #222; }
.contact-content { width: 45%; display: flex; flex-direction: column; text-align: left; }
.section-title { font-family: 'Permanent Marker', cursive; font-size: 55px; color: #e4aa36; margin-bottom: 40px; letter-spacing: 2px; }
.info-block { margin-bottom: 35px; }
.info-block strong { color: #e4aa36; font-size: 14px; letter-spacing: 3px; display: block; margin-bottom: 10px; text-transform: uppercase; }
.info-block p { color: #cccccc; font-size: 16px; line-height: 1.8; margin: 0; }
.contact-link { color: #ffffff; text-decoration: none; font-size: 18px; font-weight: bold; transition: color 0.3s ease; display: inline-block; }
.contact-link:hover { color: #e4aa36; }
.map-container { width: 50%; border: 2px solid #e4aa36; border-radius: 8px; overflow: hidden; box-shadow: 0px 15px 40px rgba(228, 170, 54, 0.15); }
.map-container iframe { display: block; }

/* --- SUBPAGE GALLERY STYLES --- */
.subpage-header { padding: 80px 10% 40px; text-align: center; background-color: #080808; border-bottom: 1px solid #222; }
.subpage-title { font-family: 'Permanent Marker', cursive; font-size: 60px; color: #e4aa36; margin-bottom: 20px; text-shadow: 0px 3px 10px rgba(0,0,0,0.8); }
.subpage-desc { font-size: 16px; color: #ccc; max-width: 800px; margin: 0 auto; line-height: 1.8; }
.gallery-container { padding: 60px 10%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-image { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; border: 2px solid #333; transition: border-color 0.3s ease; }
.gallery-image:hover { border-color: #e4aa36; }
.back-btn { display: inline-block; margin-top: 30px; color: #888; text-decoration: none; font-weight: bold; letter-spacing: 2px; transition: color 0.3s; }
.back-btn:hover { color: #e4aa36; }

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 900px) {
    
    .hero-container {
        background-color: #111111;
        /* FIX: Lightened the dark fade for mobile too so the building is bright and visible! */
        background-image: linear-gradient(rgba(17, 17, 17, 0.40), rgba(17, 17, 17, 0.90)), url('building.jpeg');
        background-size: 100% auto;
        background-position: center;
        background-repeat: no-repeat;
    }

    .mobile-border {
        display: flex;
    }
    
    .top-border {
        top: 8%; 
    }
    
    .bottom-border {
        bottom: 6%; 
    }
    
    .brand-title { font-size: 55px; }
    .subtext { font-size: 12px; padding: 0 20px; }
    .contact-section { flex-direction: column; padding: 60px 20px; text-align: center; gap: 40px; }
    .contact-content { width: 100%; text-align: center; }
    .section-title, .subpage-title { font-size: 45px; }
    .map-container { width: 100%; }
    .subpage-header { padding: 60px 20px 30px; }
    .gallery-container { padding: 40px 20px; }
}