/* STPETEXO Custom Styles */

:root {
    --stpet-yellow: #ffc107;
    --stpet-dark: #212529;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 10, 30, 0.55), rgba(10, 10, 30, 0.65)),
                url('/static/images/MainBanner_1440x.webp') center/cover no-repeat;
    min-height: 70vh;
    padding: 4rem 0;
}

.hero-section h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-warning {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-section .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* About Image Placeholder */
.about-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 4rem 2rem;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

/* Navbar */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Cards */
.card {
    border-radius: 12px;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Form Inputs Focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--stpet-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Badge Tweaks */
.badge {
    font-weight: 500;
    text-transform: capitalize;
}

/* Flatpickr Overrides */
.flatpickr-day.selected {
    background: var(--stpet-yellow) !important;
    border-color: var(--stpet-yellow) !important;
    color: var(--stpet-dark) !important;
}

/* Alert styling */
.alert {
    border-radius: 8px;
}

/* Table */
.table th {
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 3rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}
