/*!
Theme Name: Austin Pool Times
Author: Austin Pool Times
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: austin-pool-times
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

*/


/* ==========================================================================
   Austin Pool Times: Centered Hero Layout
   ========================================================================== */

.apt-hero-section {
    background-color: #f4f7f9; /* Soft background tint */
    padding: 60px 20px 40px 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.apt-container {
    max-width: 650px; /* Constrains content exactly like the design layout */
    margin: 0 auto;
}

/* Typography styles */
.apt-top-accent {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b58243; /* Warm gold */
    display: block;
    margin-bottom: 20px;
}

.apt-headline {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.2;
    color: #112e3b; /* Deep Navy */
    margin: 0 auto 20px auto;
    font-weight: 400;
}

.apt-headline .text-red {
    color: #9e2a2b; /* Elegant red accent */
    display: block;
    font-weight: 700;
}

.apt-subheadline {
    font-size: 16px;
    line-height: 1.5;
    color: #4a5e6a;
    margin-bottom: 24px;
}

/* Accent Banner Badge */
.apt-badge-banner {
    background-color: #112e3b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 35px;
    gap: 10px;
}

.apt-badge-banner .badge-number {
    background-color: #d99e46;
    color: #112e3b;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Main Centered Form Card */
.apt-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(17, 46, 59, 0.06);
    border: 1px solid #e1e8ed;
    overflow: hidden;
    text-align: left;
    margin-bottom: 16px;
}

.apt-form-header {
    background-color: #112e3b;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.form-header-spots {
    background-color: #d99e46;
    color: #112e3b;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
}

.apt-form-body {
    padding: 24px;
}

/* Target both mock fields and active Gravity Forms outputs */
.mock-field, .gfield {
    margin-bottom: 16px;
}

.mock-field label, .gfield_label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #718794;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.mock-field input, .ginput_container input[type="text"], .ginput_container input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e8ed;
    background-color: #f8fafc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.mock-btn, .gform_button {
    width: 100%;
    background-color: #d99e46;
    color: #112e3b;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mock-btn:hover, .gform_button:hover {
    background-color: #ca8d35;
}

.apt-form-subtext {
    font-size: 12px;
    color: #8da2ae;
    margin-bottom: 35px;
}

/* Centered Benefits Block styles */
.apt-benefits-container {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.apt-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apt-benefits-list li {
    font-size: 14px;
    color: #334d5c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apt-check-icon {
    background-color: #112e3b;
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Desktop Responsiveness Scaling */
@media (min-width: 768px) {
    .apt-headline {
        font-size: 48px;
    }
}