/* coming-soon.css - RBA Premium Architectural Coming Soon Page Styles */

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

:root {
    --bg-color: #111111;
    --color-accent: #dc3114;
    /* Warm Sand / Champagne Gold */
    --color-accent-rgb: 197, 168, 128;
    --rba-red: #dc3114;
    /* Sparse brand marker */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-sans);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    user-select: none;
}

/* Background Architecture Slideshow */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.0);
    animation: crossFadeZoom 18s infinite ease-in-out;
}

/* 3 Selected premium architectural visualization / interior decor images */
.slide:nth-child(1) {
    background-image: url("project/MALL OF EGYPT/2.png");
    /* background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?q=80&w=1600&auto=format&fit=crop'); */
    animation-delay: 0s;
}

.slide:nth-child(2) {
    background-image: url('project/ALSAFA TOWERS-IRAQ/1.png');
    animation-delay: 6s;
}

.slide:nth-child(3) {
    background-image: url('project/ALSAFA TOWERS-IRAQ/3.png');
    animation-delay: 12s;
}

.slide:nth-child(4) {
    background-image: url('project/ALMAZA-BAY-NORTH-COAST/ALMAZA-BAY-NORTH-COAST02.png');
    animation-delay: 18s;
}

.slide:nth-child(5) {
    background-image: url('project/HOTEL 54-KATEMYA COAST-NORTH COAST/3.png');
    animation-delay: 22s;
}

.slide:nth-child(6) {
    background-image: url('project/MINKA MAPLE VILLA/1.png');
    animation-delay: 26s;
}

.slide:nth-child(7) {
    background-image: url('project/MINKA SALES CENTER-NEW CAIRO/1.png');
    animation-delay: 30s;
}

.slide:nth-child(8) {
    background-image: url('project/POPCULT/2.png');
    animation-delay: 34s;
}

.slide:nth-child(9) {
    background-image: url('project/MYSTIQUE-JEDDAH SAUDI ARABIA-VZD/1.png');
    animation-delay: 38s;
}

.slide:nth-child(10) {
    background-image: url('project/PPI X ABYAT FOOD HALL-RIYADH SAUDI ARABIA-VZD/1.png');
    animation-delay: 42s;
}

.slide:nth-child(11) {
    background-image: url('project/PRIVATE VILLA-NORTH COAST/1.png');
    animation-delay: 46s;
}

.slide:nth-child(12) {
    background-image: url('project/WADI ZAHA-OMAN-AHLY SABBOUR/3.png');
    animation-delay: 50s;
}

/* Soft dark vignetted light projection */
.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(17, 17, 17, 0.45) 0%,
            rgba(17, 17, 17, 0.88) 100%);
    z-index: 1;
}

/* Layout Grid */
.layout {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 3rem 6%;
    overflow: hidden;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: fadeIn 1.5s ease-out forwards;
}

.logo img {
    height: 40px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 1;
}

.brand-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.brand-meta span::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--rba-red);
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

/* Main Content Grid */
.main-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 1.2s ease-out forwards;
}

.title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: -1.5px;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.title span {
    font-style: italic;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

/* Minimalist Countdown Display */
.countdown-container {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s backwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.05);
}

.countdown-val {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
}

.countdown-lbl {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.6rem;
    font-weight: 400;
}

/* Right Column Panels */
.interactive-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s backwards;
}

/* Editorial Philosophy Quote */
.philosophy-panel {
    border-left: 2px solid var(--color-accent);
    padding-left: 2rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: #f3f3f3;
    margin-bottom: 0.75rem;
}

.quote-author {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    font-weight: 500;
}

/* Highlights / Upcoming Services */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.highlight-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.highlight-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Minimalist Subscribe Card */
.subscribe-card {
    background: rgba(20, 20, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 4px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.45;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.subscribe-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 0.5px;
}

.subscribe-input:focus {
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.5);
}

.subscribe-btn {
    background: #ffffff;
    color: #111111;
    border: none;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--color-accent);
    color: #111111;
    transform: translateY(-1px);
}

.form-message {
    font-size: 0.75rem;
    margin-top: -0.25rem;
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-message.success {
    color: #a5d6a7;
    display: block;
}

.form-message.error {
    color: #ef9a9a;
    display: block;
}

/* Footer Metadata */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s backwards;
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.powered-by {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.powered-by a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.powered-by a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

/* Custom Cursors - Lens Spotlight Mode */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.3s ease;
    will-change: width, height, transform;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    box-shadow: 0 0 6px var(--color-accent);
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-label {
    font-size: 7px;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-outline.hover {
    width: 55px;
    height: 55px;
    background-color: var(--color-accent);
    border-color: transparent;
}

.cursor-outline.hover .cursor-label {
    opacity: 1;
}

/* Gallery Soft Projector Light Spotlight */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(197, 168, 128, 0.07) 0%,
            rgba(197, 168, 128, 0.01) 50%,
            rgba(0, 0, 0, 0) 100%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom 3-image cross-fade animation with scale drift */
@keyframes crossFadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }

    11.11% {
        opacity: 0.65;
        /* Soft opacity so overlay acts */
    }

    33.33% {
        opacity: 0.65;
    }

    44.44% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .layout {
        grid-template-rows: auto 1fr auto;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .title {
        font-size: 3.6rem;
    }
}

@media (max-width: 768px) {
    .layout {
        padding: 2.5rem 6%;
    }

    .title {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .countdown-container {
        gap: 1.75rem;
    }

    .countdown-item:not(:last-child)::after {
        right: -0.875rem;
    }

    .countdown-val {
        font-size: 2.4rem;
    }

    .philosophy-panel {
        padding-left: 1.25rem;
    }

    .quote-text {
        font-size: 1.15rem;
    }

    .highlights-grid {
        gap: 1.25rem;
    }

    .subscribe-card {
        padding: 1.75rem;
    }

    .footer {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .cursor-dot,
    .cursor-outline,
    .spotlight {
        display: none !important;
    }
}