/* CSS File - The Big Panda */

/* Header Logo: logo image (HTML) - no ::before icon */
.site-title::before {
    content: none;
    display: none;
}

/* Site Header */
.site-header {
    box-shadow: 0 2px 12px rgba(55, 65, 81, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 75%, rgba(73, 102, 67, 0.12));
    position: relative;
    z-index: 10;
}

.site-title .logo-icon {
    height: 75px;
    width: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-title .logo-icon svg,
.site-title .logo-icon img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/* Site Title */
.site-title {
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.025em;
}

/* Form Background - placeholder; replace URL when final background is provided */
.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://res.cloudinary.com/dbtcg826q/image/upload/v1770324172/common/sp-buckets/img/bigpanda-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Form Section */
.form-section {
    position: relative;
}

/* Hero Step Icons */
.step-icon {
    background: #6b7280;
    border-radius: 0.5rem;
}

.step-icon i {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(55, 65, 81, 0.3);
}

/* Form button hover */
button:hover,
.btn:hover,
input[type="submit"]:hover {
    background-color: #496643 !important;
}

/* ---------------------------
   Hero Steps Section (3 steps)
   --------------------------- */
#hero-steps {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1rem;
}

.steps-header {
    margin-bottom: 2rem;
    text-align: center;
}

.steps-main-title {
    color: #6b7280 !important;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

/* Footer text color */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer .footer-info,
.site-footer .footer-links,
.site-footer .copyright {
    color: #ffffff !important;
}

@media (min-width: 480px) {
    .steps-main-title {
        white-space: nowrap;
    }
}

.steps-subtitle {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 639.98px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) and (max-width: 1023.98px) {
    .steps-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

#hero-steps .step {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(55, 65, 81, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#hero-steps .step-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

#hero-steps .step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

#hero-steps .step-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    max-width: 72ch;
}
