/* ===================================
   iner.you - Coming Soon Page Styles
   =================================== */

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

:root {
    /* Color Palette */
    --bg-color: #f6e8d9;
    --brand-color: #7f9773;
    --text-color: #282828;
    --accent: #84796e;
    
    /* Typography */
    --font-primary: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Body & Wrapper */
body {
    font-family: var(--font-primary);
    background-color: #000;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wrapper {
    width: calc(100vw - 2rem);
    height: calc(100vh - 2rem);
    background-color: var(--bg-color);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.container {
    width: 100%;
    max-width: 1380px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    width: 200px;
    height: 200px;
    animation: logoRotate 8s ease-in-out infinite;
}

/* Brand Name */
.brand-name {
    font-size: 72px;
    font-weight: 200;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-accent {
    color: var(--brand-color);
}

/* Tagline */
.tagline {
    font-size: 24px;
    font-weight: 200;
    color: var(--accent);
    letter-spacing: 0.02em;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Description */
.description {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
}

.description strong {
    font-weight: 500;
}

/* Bottom Section */
.bottom-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

/* Interest Form */
.interest-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(127, 151, 115, 0.3);
    border-radius: 50px;
    padding: 6px;
    transition: all 0.3s ease;
}

.interest-form:focus-within {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(127, 151, 115, 0.1);
}

.email-input {
    flex: 1;
    padding: 6px 18px;
    background-color: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-color);
    outline: none;
}

.email-input::placeholder {
    color: var(--accent);
    opacity: 0.7;
}

.submit-btn {
    padding: 10px 28px;
    background-color: var(--brand-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 40, 40, 0.2);
}

.submit-btn:hover {
    background-color: var(--text-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(127, 151, 115, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
    background-color: var(--text-color);
}
/* Animations */
@keyframes logoRotate {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        gap: 60px;
    }
    
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .brand-name {
        font-size: 56px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .container {
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 32px;
        max-height: 100%;
    }
    
    .left-column {
        align-items: center;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 24px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .brand-name {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .description {
        font-size: 15px;
        text-align: left;
        line-height: 1.7;
    }
    
    .bottom-section {
        flex-direction: column;
        align-items: stretch;
        margin-top: 32px;
    }
    
    .interest-form {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }
    
    .email-input {
        padding: 12px 16px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .container {
        padding: 24px 20px;
        gap: 24px;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .description {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .bottom-section {
        margin-top: 24px;
    }
    
    .email-input {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }
    
    .bottom-section {
        display: none;
    }
}