/*
Theme Name: Luxe Interiors - Unified Studio Design
Description: A uniform, responsive design system for interior design portfolios.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

/* Section Foundation */
.section-pinned {
    width: 100vw;
    height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image Uniformity */
.interior-view, .facade-view, .floor-plan-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5); /* Unified mood/exposure */
}

/* The HUD System: Uniform Text Placement */
.text-overlay, .room-info {
    position: absolute;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    pointer-events: none;
}

/* Mobile Uniformity: Title top, Description bottom */
.text-overlay { top: 8%; }
.room-info { bottom: 8%; }

/* Desktop Uniformity: Left-Aligned Sidebar HUD */
@media (min-width: 1024px) {
    .text-overlay, .room-info {
        left: 5%;
        transform: none;
        width: 380px;
        text-align: left;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
    }
    
    .text-overlay { 
        top: 15%; 
    }
    .room-info { 
        bottom: auto;
        top: 25%; /* Anchored directly below Title */
    }
}

/* Navigation Dots: Unified Interaction */
.nav-dots {
    position: fixed;
    z-index: 1000;
    display: flex;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px;
}

@media (max-width: 768px) {
    .nav-dots { bottom: 20px; left: 50%; transform: translateX(-50%); flex-direction: row; gap: 12px; }
}

@media (min-width: 769px) {
    .nav-dots { right: 30px; top: 50%; transform: translateY(-50%); flex-direction: column; gap: 15px; }
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #fff;
    transform: scale(1.3);
}