/* Base Styles */
:root {
    --bg-color: #fdfbfb; /* Very light warm white */
    --surface-color: #ffffff;
    --border-color: #f0e6e6;
    --text-primary: #4a403a; /* Soft dark brown/charcoal */
    --text-secondary: #8c7e77;
    --accent-gold: #cca462; /* Gold metallic */
    --accent-pink: #f9ecec; /* Blush pink */
    --accent-pink-dark: #eecdcd;
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-color);
    background: radial-gradient(circle at top right, #ffffff, #fdfbfb 60%, #f4eded 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    /* Gold metallic effect */
    color: var(--accent-gold);
    background: linear-gradient(135deg, #e6c88b 0%, #c19643 50%, #8b6824 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content {
    max-width: 850px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(200, 180, 180, 0.2);
    border: 1px solid var(--border-color);
}

.profile-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.profile-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: cover;
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Editorial Text Styling */
.editorial-text {
    text-align: left;
    margin: 3rem 0;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    padding-bottom: 1.5rem;
}

.lead-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.text-columns {
    column-count: 2;
    column-gap: 3rem;
    text-align: justify;
    margin-bottom: 3rem;
}

.text-columns p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    break-inside: avoid;
}

.cta-text {
    text-align: center;
    background-color: var(--accent-pink);
    padding: 1.8rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(220, 180, 180, 0.15);
}

.cta-text p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3.5rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--accent-pink);
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    min-width: 110px;
    box-shadow: 0 5px 15px rgba(220, 180, 180, 0.2);
    transition: var(--transition);
    border: 1px solid #fff;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: var(--accent-pink-dark);
    box-shadow: 0 10px 20px rgba(220, 180, 180, 0.4);
}

.countdown-item span:first-child {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Subscribe Form */
.subscribe-form {
    margin: 4rem 0 2rem;
}

.subscribe-form p {
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 50px;
    background: #fff;
    border: 2px solid var(--accent-gold);
    padding: 4px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(200, 180, 180, 0.1);
}

.form-group:focus-within {
    box-shadow: 0 5px 20px rgba(204, 164, 98, 0.25);
    transform: scale(1.02);
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

input[type="email"]::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

button[type="submit"] {
    background: var(--accent-gold);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 0 1.5rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

button[type="submit"]:hover {
    background: #b58d4a;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--accent-gold);
    font-size: 1.3rem;
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(204, 164, 98, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }
    
    .text-columns {
        column-count: 1;
    }
    
    .cta-text {
        padding: 1.2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2.2rem;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 12px;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    
    input[type="email"] {
        background: #fff;
        border: 2px solid var(--accent-gold);
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    button[type="submit"] {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
