/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #151515;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color System */
:root {
    --color-black: #151515;
    --color-white: #fff;
    --color-dark-grey: #717171;
    --color-mid-grey: #aaa;
    --color-grey: #b6cbcb;
    --color-mid-yellow: #ffe03d;
    --color-light-pink: #ffd1e7;
    --color-mid-purple: #d987ff;
    --color-mid-blue: #88a2ff;
}

/* Container */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(21, 21, 21, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(170, 170, 170, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    font-size: 1.125rem;
    font-family: 'Inter', monospace;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-mid-yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-light-pink);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    text-decoration: underline;
    color: var(--color-white);
}

.nav-link:focus {
    outline: 2px solid var(--color-light-pink);
    outline-offset: 2px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.brand-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--color-mid-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--color-light-pink);
    margin-bottom: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.coming-soon-badge {
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background: rgba(217, 135, 255, 0.2);
    border: 1px solid var(--color-mid-purple);
    color: var(--color-mid-purple);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: 'Inter', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Service Icons */
.service-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-grey);
}

.icon-label {
    font-size: 0.75rem;
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Email Form */
.email-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(170, 170, 170, 0.3);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 28rem;
    margin: 0 auto;
}

.email-subtitle {
    color: var(--color-light-pink);
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.email-input-group {
    display: flex;
    gap: 0.5rem;
}

.email-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-mid-grey);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.15s ease;
}

.email-input::placeholder {
    color: var(--color-dark-grey);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-mid-yellow);
    box-shadow: 0 0 0 2px rgba(255, 224, 61, 0.2);
}

.email-submit {
    background: var(--color-mid-yellow);
    color: var(--color-black);
    border: 1px solid var(--color-mid-yellow);
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.email-submit:hover {
    background: rgba(255, 224, 61, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 224, 61, 0.3);
}

.email-submit:active {
    transform: scale(0.98);
}

.email-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Animation */
.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--color-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-mid-grey);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-mid-grey);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background-color: var(--color-mid-grey);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateX(-50%) translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes scroll-wheel {
    0% { opacity: 1; }
    100% { opacity: 0; transform: translateY(16px); }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(113, 113, 113, 0.1) 100%);
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-light-pink);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    color: var(--color-mid-yellow);
    font-weight: 600;
}

.about-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-grey);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.studios-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.studio-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.2s ease;
}

.studio-card:hover {
    transform: translateY(-2px);
}

.studio-creators {
    border: 1px solid rgba(217, 135, 255, 0.3);
}

.studio-gear {
    border: 1px solid rgba(136, 162, 255, 0.3);
}

.studio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.studio-creators .studio-title {
    color: var(--color-mid-purple);
}

.studio-gear .studio-title {
    color: var(--color-mid-blue);
}

.studio-description {
    color: var(--color-grey);
    line-height: 1.5;
}

/* Contact Footer */
.contact-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(170, 170, 170, 0.2);
    padding: 4rem 0;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--color-light-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    background: rgba(255, 224, 61, 0.2);
    color: var(--color-mid-yellow);
}

.location-icon {
    background: rgba(217, 135, 255, 0.2);
    color: var(--color-mid-purple);
}

.social-icon {
    background: rgba(255, 209, 231, 0.2);
    color: var(--color-light-pink);
}

.contact-label {
    color: var(--color-grey);
    font-size: 0.875rem;
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.15s ease;
}

.contact-link:hover {
    color: var(--color-mid-yellow);
}

.contact-address {
    color: var(--color-white);
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(170, 170, 170, 0.2);
}

.copyright {
    color: var(--color-dark-grey);
    font-size: 0.875rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.toast {
    background: var(--color-black);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.info {
    border-left-color: var(--color-mid-blue);
}

.toast-icon {
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.875rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav-content {
        padding: 0.75rem 0;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .service-icons {
        gap: 1.5rem;
    }
    
    .email-card {
        margin: 0 1rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .contact-footer {
        padding: 3rem 0;
    }
}

/* Selection styles */
::selection {
    background-color: var(--color-mid-yellow);
    color: var(--color-black);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--color-mid-yellow);
    outline-offset: 2px;
}

