:root {
    --primary-bg: #dbeafe; /* Light blueish background like reference */
    --card-bg: #ffffff;
    --text-main: #1a1a1a;
    --text-secondary: #666666;
    --accent-color: #3b82f6; /* Blue button */
    --accent-hover: #2563eb;
    --decoration-color: #ef4444; /* Red for pot/brick accents */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.page-container {
    background: var(--card-bg);
    width: 90%;
    max-width: 1200px; /* Large card style */
    min-height: 85vh;
    border-radius: 40px;
    border: 3px solid #000;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.social-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.illustration-container {
    position: relative;
    margin-bottom: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.heart-bubble {
    position: absolute;
    top: 0;
    left: 20%;
    background: white;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    color: #ef4444;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.content-text {
    text-align: center;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', serif; /* Matching the serif look in reference for title */
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 3rem;
    font-family: var(--font-main);
}

/* Signup Form */
.signup-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.signup-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.email-form {
    display: flex;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px; /* Slightly rounded unlike the pill in some designs, matching reference rectangle */
    padding: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.email-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-main);
}

.email-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-main);
}

.email-form button:hover {
    background-color: var(--accent-hover);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1rem;
    font-weight: 500;
}

/* Decorations - Simple CSS shapes to mimic the reference background items */
.deco-item {
    position: absolute;
    color: #10b981; /* Green plant color */
    font-size: 2rem;
}

.shelf {
    width: 60px;
    height: 6px;
    background: #a16207; /* Shelf wood color */
    border-radius: 3px;
    margin-top: 2px;
}

.plant-shelf-left {
    top: 20%;
    left: 10%;
    text-align: center;
}

.plant-shelf-right {
    top: 15%;
    right: 15%;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .page-container {
        width: 95%;
        padding: 1rem;
        height: auto;
        min-height: 95vh;
        margin: 1rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .deco-item {
        display: none; /* Hide clutter on mobile */
    }
}
