/* =========================================================
   FORTUNE ONE VISTA - LUXURY HOMEPAGE OVERLAY
========================================================= */

/* Main Scrolling Container (Overlays Tour) */
.luxury-home-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

/* Hide scrollbar for cleaner look (optional, but requested for luxury) */
.luxury-home-wrapper::-webkit-scrollbar {
    width: 8px;
}
.luxury-home-wrapper::-webkit-scrollbar-track {
    background: #0a0a0a;
}
.luxury-home-wrapper::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* =========================================================
   HERO SECTION
========================================================= */
.luxury-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Cinematic Panning Background (Auto-Rotate simulation) */
.luxury-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15); /* Zoom in to allow panning */
    animation: panBackground 40s ease-in-out infinite alternate;
    z-index: 1;
}

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

.luxury-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, #000000 100%);
    z-index: 2;
}

/* Ambient Particles */
.luxury-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatParticles 100s linear infinite;
    opacity: 0.5;
}

@keyframes floatParticles {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* =========================================================
   HEADER (GLASSMORPHISM)
========================================================= */
.luxury-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    transition: all 0.5s ease;
    background: transparent;
}

.luxury-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 50px;
}

.luxury-header-logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.luxury-header-nav {
    display: flex;
    gap: 30px;
}

.luxury-header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.luxury-header-nav a:hover {
    color: var(--color-primary);
}

.luxury-btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxury-btn-outline:hover {
    background: #fff;
    color: #000;
}

/* =========================================================
   HERO CONTENT
========================================================= */
.luxury-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.luxury-hero-logo {
    opacity: 0;
}

.luxury-hero-logo img {
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.luxury-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5.5rem;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.9);
    background: linear-gradient(to right, #ffffff, #e2d2b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.luxury-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #e2d2b3;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    opacity: 0;
}

.luxury-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0;
}

/* Ultra Premium CTA */
.luxury-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(226, 210, 179, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    opacity: 0;
}

.luxury-cta-btn:hover {
    background: rgba(226, 210, 179, 0.1);
    border-color: #e2d2b3;
    color: #e2d2b3;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(226, 210, 179, 0.2);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */
.luxury-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 2s forwards 2s;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

@keyframes scrollBounce {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* =========================================================
   PROJECT HIGHLIGHTS SECTION
========================================================= */
.luxury-section {
    padding: 100px 5%;
    background: #000;
    position: relative;
    z-index: 5;
}

.luxury-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
}

.luxury-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-highlight-card {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.luxury-highlight-card:hover {
    background: rgba(35, 35, 35, 0.8);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.luxury-highlight-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.luxury-highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.luxury-highlight-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* =========================================================
   FEATURE PREVIEW (SINGLE ROTATING IMAGE)
========================================================= */
.luxury-preview-single {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    border-radius: 50%; /* Make it circular */
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(226,91,19,0.2);
}

.luxury-rotating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowRotate 40s linear infinite;
}

@keyframes slowRotate {
    0% { transform: rotate(0deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

@media (max-width: 768px) {
    .luxury-preview-single {
        width: 300px;
        height: 300px;
    }
}

/* =========================================================
   READY TO EXPLORE (START TOUR SECTION)
========================================================= */
.luxury-start-section {
    padding: 150px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.luxury-start-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(226,91,19,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.luxury-start-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.luxury-giant-cta {
    font-size: 1.2rem;
    padding: 22px 60px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.luxury-giant-cta:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(226,91,19,0.4);
}

/* =========================================================
   FOOTER
========================================================= */
.luxury-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #000;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.luxury-footer-links {
    display: flex;
    gap: 30px;
}

.luxury-footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.luxury-footer-links a:hover {
    color: #fff;
}

/* =========================================================
   QUICK ACTIONS (FLOATING)
========================================================= */
.luxury-floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100000;
    transition: opacity 0.5s ease;
}

.luxury-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.luxury-action-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .luxury-header-nav { display: none; }
    .luxury-hero-title { font-size: 3rem; }
    .luxury-start-title { font-size: 2rem; }
    .luxury-floating-actions { right: 15px; bottom: 15px; }
}
