:root {
    /* Brand Colors from tailwind.config.js */
    --primary: #E85D40;
    /* Coral */
    --secondary: #D4502F;
    /* Darker Coral */
    --background: #FDFBF8;
    /* Warm Off-White */
    --surface: #FEF6EC;
    /* Light Warm Surface */
    --text: #3A3530;
    /* Dark Brown */
    --muted: #9E958B;
    /* Warm Gray */
    --accent: #F5C242;
    /* Gold */

    /* Fonts */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: transparent;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: -0.05rem;
}

.btn-secondary {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: var(--primary);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.hero {
    margin-bottom: 6rem;
    animation: fadeIn 1s ease-out;
}

h1 {
    font-family: var(--font-heading);
    color: var(--text);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    font-style: italic;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(232, 93, 64, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 64, 0.4);
    background-color: var(--secondary);
}

.sub-cta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: transform 0.3s;
    border: 1px solid rgba(232, 93, 64, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 3rem;
    color: var(--muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.socials {
    margin-top: 1rem;
}

.socials a {
    color: var(--muted);
    margin: 0 10px;
    text-decoration: none;
}

.socials a:hover {
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .features {
        flex-direction: column;
    }
}