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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f5f0; /* Soft luxury cream background */
    color: #2c3e35; /* Deep elegant green/earth tone */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Layout Container */
.container {
    max-width: 650px;
    width: 100%;
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Typography & Content */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #61746a;
    letter-spacing: 1px;
}

.divider {
    border: 0;
    height: 1px;
    background: #e0dcd3;
    margin: 30px auto;
    width: 60%;
}

h2 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: #a38a5e; /* Subdued gold highlight */
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Call to Action Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c3e35;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d564a;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e35;
    border: 1px solid #2c3e35;
}

.btn-secondary:hover {
    background-color: #2c3e35;
    color: #ffffff;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for mobile screens */
@media (min-width: 480px) {
    .cta-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 60px 40px;
    }
}

/* Text-only secondary link style */
.btn-text {
    background-color: transparent;
    color: #61746a;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.8rem;
}

.btn-text:hover {
    color: #2c3e35;
}

/* Adjust button alignment for desktop viewports */
@media (min-width: 480px) {
    .cta-container {
        flex-wrap: wrap;
        align-items: center;
    }
}
