/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
    line-height: 1.6;
    height: auto;
}

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

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background-image: url('assets/gravypass-strip.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #024233;
    padding: 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero .container {
    padding-top: 5%;
    padding-bottom: 5%;
    width: 100%;
    max-width: 700px;
}

.hero-content {
    max-width: 100%;
}

.hero .headline {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0 15px;
    color: #024233;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero .subheadline {
    font-size: 20px;
    margin-bottom: 25px;
    color: #024233;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background: #DAA520; /* Gold color */
    color: #fff; /* White text should still work */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
    width: auto;
}

.cta-button:hover {
    background: #b8860b; /* Darker gold */
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-button {
    font-size: 20px;
}

/* Features Section */
.features {
    padding: 40px 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #024233;
}

.feature-panel {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.feature-panel.alt {
    flex-direction: row-reverse;
    background-color: #e6f7ff;
}

.feature-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.feature-text {
    flex-grow: 1;
}

.feature-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
    color: #024233;
}

.feature-desc {
    font-size: 16px;
    color: #555;
}

/* SMS Signup Section */
.sms-signup {
    padding: 40px 0;
    background-color: #e6f7ff;
    text-align: center;
}

.sms-signup h2 {
    font-size: 28px;
    color: #024233;
    margin-bottom: 10px;
}

.sms-signup p {
    font-size: 18px;
    color: #024233;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
}

.phone-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.consent-container {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin: 15px 0;
}

.consent-label {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin: 15px 0 10px;
    text-align: center;
}

.sms-button {
    width: 100%;
}

.sms-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #DAA520;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background-color: #024233;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    margin: 0;
}

.footer nav a {
    color: #a7efff;
    margin: 0 10px;
}

.footer nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Styles for Legal Pages Content */
.legal-content .container {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff; /* White background for content area */
    border-radius: 8px; /* Optional rounding */
    margin-top: 20px; /* Space below hero */
    margin-bottom: 20px; /* Space above footer */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional subtle shadow */
}

/* Add some basic styling within the article if needed */
.legal-content article h1,
.legal-content article h2,
.legal-content article h3,
.legal-content article h4 {
    color: #024233; /* Match theme color */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.legal-content article p,
.legal-content article li {
    color: #333;
    line-height: 1.7;
}

.legal-content article strong {
    color: #000;
}

.legal-content article table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.legal-content article th,
.legal-content article td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.legal-content article th {
    background-color: #f2f2f2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .headline {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .feature-panel,
    .feature-panel.alt {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        font-size: 40px;
        width: auto;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 20px;
    }

    .footer .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .headline {
        font-size: 24px;
    }

    .subheadline {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }

     .hero-button {
        font-size: 18px;
    }

    .logo {
        height: 30px;
    }

    .form-container {
        padding: 15px;
    }
} 