/*
Theme Name: St Clair West Landing
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A minimal landing page theme for Best of St Clair West
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stclairwest
*/

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

body {
    font-family: 'Georgia', serif;
    background-color: #f5f3f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 100px;
    border-bottom: 1px solid #d4cfc7;
}

.coming-soon-badge {
    font-size: 11px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: #333;
    margin: 40px auto;
}

.description {
    max-width: 680px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Email Form */
.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 16px;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-right: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
}

.email-input:focus {
    outline: none;
    border-color: #999;
}

.subscribe-btn {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #333;
}

.form-note {
    font-size: 13px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Features Section */
.features {
    padding: 100px 20px;
}

.section-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #333;
    stroke-width: 1.5;
    fill: none;
}

.feature h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #d4cfc7;
}

.footer-text {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.footer-location {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description {
        font-size: 15px;
    }

    .email-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input {
        width: 100%;
        border-right: 1px solid #ccc;
        border-bottom: none;
    }

    .subscribe-btn {
        width: 100%;
    }

    .features-grid {
        gap: 50px;
    }
}