/* Studio Page Styles - Revamped Dark Edition */

:root {
    --studio-bg: #050505;
    --studio-card-bg: #0a0a0a;
    --studio-glass: rgba(255, 255, 255, 0.03);
    --studio-border: rgba(255, 255, 255, 0.08);
}

/* --- Global Dark Theme for Studio --- */
body {
    background-color: var(--studio-bg);
    color: var(--text-light);
}

/* --- Navigation & Footer Dark Overrides --- */
#mainNav {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--studio-border);
}

footer {
    background: var(--bg-white) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
    color: var(--text-light) !important;
    padding: 100px 0;
    text-align: center;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
}

footer .logoText {
    color: white !important;
}

footer a {
    color: var(--text-muted) !important;
}

footer a:hover {
    color: var(--accent) !important;
}

/* --- Studio Landing Section --- */
.studio-landing {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.landing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.exploding-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: blurAndDarken 3s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    opacity: 0;
    animation: fadeInOverlay 3s ease 1.5s forwards;
}

.landing-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    padding-bottom: 80px;
    /* Space for scroll indicator */
}

.header-fade-in {
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.landing-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    padding: 0 20px;
}

.landing-subtitle {
    font-size: clamp(0.75rem, 3vw, 1.3rem);
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: clamp(1px, 2vw, 4px);
    text-transform: uppercase;
    margin-bottom: min(40px, 5vh);
    opacity: 0.8;
    padding: 0 20px;
}

/* --- Studio Options (The Buttons) --- */
.studio-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}

.studio-btn {
    position: relative;
    flex: 1;
    min-width: 300px;
    height: 45vh;
    background: rgb(10, 10, 10, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
}

.studio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.studio-btn:hover {
    transform: translateY(-10px) scale(1);
    border-color: var(--accent-dark);
    opacity: 1;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.2);
}

.studio-btn:hover::before {
    opacity: 0.1;
}

.btn-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-cta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.studio-btn:hover .btn-cta {
    gap: 18px;
    border-color: var(--accent);
    color: var(--accent);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.6rem;
    background: var(--accent);
    color: black;
    padding: 5px 12px;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInOverlay 1s ease 2.5s forwards;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    font-size: 1.2rem;
    animation: arrowBounce 2.5s infinite;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
    transform: translateY(5px);
}

/* --- Component Engineering Section (Ultra Luxury) --- */
.engineering-section {
    padding: 180px 0;
    background: var(--bg-silver) !important;
}

.engineering-header {
    text-align: center;
    margin-bottom: 100px;
}

.sub-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 20px;
}

.engineering-header h3 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: white;
    font-weight: 400;
    letter-spacing: -1px;
}

.engineering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.engineering-card {
    background: var(--bg-white);
    border: 1px solid var(--studio-border);
    padding: 80px 60px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1.2s ease;
    z-index: 0;
    pointer-events: none;
}

.engineering-card:hover .card-glow {
    transform: translate(-50%, -50%) scale(1);
}

.engineering-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.engineering-card:hover .card-image img {
    transform: scale(1.05);
}

.engineering-card h4 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.engineering-card p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

.card-action {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.engineering-card:hover .card-action {
    gap: 20px;
}

.status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    padding: 2px 10px;
    border: 1px solid var(--accent);
    z-index: 2;
}

.future-card {
    opacity: 0.6;
    border-style: dashed;
}

/* --- Notification Modal --- */
.notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.notify-modal.active {
    display: flex;
    animation: fadeInOverlay 0.5s ease;
}

.notify-modal-content {
    background: #0a0a0a;
    border: 1px solid var(--accent);
    padding: 80px 60px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.close-notify-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #555;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-notify-btn:hover {
    color: white;
}

.notify-header {
    margin-bottom: 50px;
}

.notify-header .logoSymbol {
    font-size: 3rem;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.notify-header h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 15px;
}

.notify-header p {
    color: #888;
    line-height: 1.6;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 20px;
    color: #555;
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    padding: 20px 20px 20px 60px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--accent);
    background: #151515;
    outline: none;
}

.notify-submit-btn {
    background: var(--accent);
    color: black;
    border: none;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

.notify-success {
    text-align: center;
}

.notify-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.notify-success p {
    color: white;
    font-size: 1.1rem;
}

/* --- Keyframes --- */
@keyframes blurAndDarken {
    0% {
        filter: blur(0px) brightness(1);
    }

    100% {
        filter: blur(20px) brightness(0.7);
    }

    /* Darker for ultra luxury */
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -15px);
    }

    60% {
        transform: translate(-50%, -8px);
    }
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .engineering-grid {
        padding: 0 20px;
    }
}

@media (max-width: 1300px) {
    .studio-options {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 40px;
        margin-top: 40px;
    }

    .studio-btn {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 40px;
    }

    .btn-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .engineering-grid {
        grid-template-columns: 1fr;
    }

    .landing-content {
        align-items: center;
        margin-top: 0;
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .landing-content {
        padding-top: calc(var(--nav-height) + 60px);
        padding-bottom: 60px;
        justify-content: flex-start;
    }

    .status-badge {
        font-size: 0.5rem;
        padding: 1px 6px;
        top: 12px;
        right: 12px;
    }

    .landing-title {
        margin-bottom: 15px;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .landing-subtitle {
        margin-bottom: 30px;
        font-size: clamp(0.7rem, 3vw, 0.9rem);
    }

    .studio-options {
        gap: 40px;
        margin-top: 10px;
        padding: 0 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .studio-btn {
        min-height: unset;
        height: auto;
        padding: 20px 15px;
        flex: 0 1 auto;
    }

    .btn-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 10px;
    }

    .btn-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .btn-cta {
        font-size: 0.7rem;
    }

    .coming-soon-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 10px;
        font-size: 0.5rem;
        display: inline-block;
    }

    .engineering-header h3 {
        font-size: 2.5rem;
    }

    .engineering-card {
        padding: 40px 30px;
    }

    .engineering-card h4 {
        font-size: 1.6rem;
    }

    .notify-modal-content {
        padding: 60px 30px;
    }

    .scroll-indicator {
        bottom: 25px;
    }
}

@media (max-height: 750px) and (max-width: 768px) {
    .landing-content {
        padding-top: var(--nav-height);
    }

    .landing-subtitle {
        margin-bottom: 20px;
    }

    .studio-btn {
        padding: 15px 20px;
    }

    .btn-title {
        margin-bottom: 5px;
    }
}

@media (max-height: 600px) {
    .scroll-indicator {
        display: none;
    }
}