:root {
    --bg-color: #ffffff;
    --text-primary: #121212;
    --text-secondary: #666666;
    --accent-color: #d4a373;
    /* Soft Gold/Beige */
    --accent-hover: #c49262;
    --input-bg: #f5f5f5;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --font-heading: 'Outfit', sans-serif;
    /* Keeping it modern/clean */
    --font-body: 'Outfit', sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column-reverse;
    min-height: 100vh;
}

/* Content Side */
.content-side {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    z-index: 10;
}

header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    /* Adjusted for image */
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Ensures white background becomes transparent if on white */
    display: block;
}

main {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.status-badge,
h1,
.description,
.notify-form,
.social-links {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.status-badge {
    animation-delay: 0.1s;
}

h1 {
    animation-delay: 0.3s;
}

.description {
    animation-delay: 0.5s;
}

.notify-form {
    animation-delay: 0.7s;
}

.social-links {
    animation-delay: 0.9s;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--input-bg);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 400px;
}

/* Form Styles */
.notify-form {
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    position: relative;
}

input[type="email"] {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background-color: var(--input-bg);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    outline: none;
}

input[type="email"]:focus {
    border-color: var(--text-primary);
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    padding: 0 2rem;
    background-color: var(--text-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    min-height: 1.25rem;
}

.form-message.success {
    color: #2e7d32;
}

.form-message.error {
    color: #c62828;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
}

.social-links a:hover::after {
    width: 100%;
}

footer {
    color: #999;
    font-size: 0.75rem;
    margin-top: auto;
    padding-top: 3rem;
    /* Guaranteed gap */
    line-height: 1.6;
}

.company-details {
    margin-bottom: 1rem;
}

.company-details strong {
    color: var(--text-secondary);
    /* Slightly darker than rest of footer */
    font-weight: 600;
}

/* Image Side */
.image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
}

.image-side:hover .hero-image {
    transform: scale(1.05);
}

/* Desktop Styles */
@media (min-width: 900px) {
    .container {
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
    }

    .content-side {
        flex: 0 0 45%;
        padding: 4rem 6rem;
    }

    .image-side {
        flex: 1;
        height: 100vh;
    }

    h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        justify-content: center;
    }

    .content-side {
        padding: 2rem;
    }
}