/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Averia Serif Libre', serif;
    background: linear-gradient(135deg, #f7f3e9 0%, #f0ebe1 50%, #e8ddd4 100%);
    color: #3a3a3a;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Copper color palette variables */
:root {
    --copper: #b87333;
    --copper-light: #cd853f;
    --copper-dark: #8b4513;
    --patina-green: #7fb069;
    --patina-dark: #588157;
    --patina-light: #95d5b2;
    --off-white: #f7f3e9;
    --beige: #e8ddd4;
    --text-dark: #3a3a3a;
    --text-light: #6d6d6d;
}

/* Texture overlay for rustic feel */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, transparent 20%, rgba(184, 115, 51, 0.1) 21%, rgba(184, 115, 51, 0.1) 34%, transparent 35%, transparent),
        linear-gradient(0deg, transparent 24%, rgba(127, 176, 105, 0.05) 25%, rgba(127, 176, 105, 0.05) 26%, transparent 27%, transparent 74%, rgba(127, 176, 105, 0.05) 75%, rgba(127, 176, 105, 0.05) 76%, transparent 77%, transparent);
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 2px solid var(--patina-green);
    margin-bottom: 3rem;
}

.logo-container {
    position: relative;
}

.logo {
    width: auto;
}

.temp-logo {
    display: block;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--copper-dark);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 1.1rem;
    color: var(--patina-dark);
    font-style: italic;
    letter-spacing: 1px;
}

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

.hero {
    text-align: center;
    max-width: 800px;
}

.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--copper);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.4rem;
    color: var(--patina-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.description {
    margin-bottom: 3rem;
}

.description p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(247, 243, 233, 0.6);
    border-radius: 12px;
    border: 1px solid var(--patina-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: sepia(100%) hue-rotate(25deg) saturate(150%);
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--copper-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.feature p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Email signup section */
.notify-section {
    background: linear-gradient(135deg, var(--patina-light), var(--patina-green));
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.2);
}

.notify-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-signup input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.email-signup input:focus {
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 3px rgba(255,255,255,0.3);
}

.email-signup button {
    padding: 12px 24px;
    background: var(--copper);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.email-signup button:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--patina-light);
    margin-top: 2rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--copper);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--copper-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--patina-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

.social-link:hover {
    color: var(--copper);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description p {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .email-signup input,
    .email-signup button {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .notify-section {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 1rem;
    }
}