/* Landing Page Styles
 * Styles for the Block Landing Page template
 */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Header - Transparent, Absolute Positioned */
#atc_landing_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
}

#atc_landing_header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

#atc_landing_header .logo {
    display: inline-block;
}

#atc_landing_header .logo img {
    max-height: 60px;
    width: auto;
}

/* Main Content - No top padding needed since header is absolute */
.landing-page-content {
    min-height: 100vh;
    padding-top: 0;
}

.landing-page-content article {
    width: 100%;
}

/* Footer - Three Columns */
#atc_landing_footer {
    padding: 30px 0;
    color: #fff;
}

#atc_landing_footer a {
    color: #fff;
    text-decoration: none;
}

#atc_landing_footer a:hover {
    text-decoration: underline;
}

#atc_landing_footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-column.copyright-column {
    text-align: left;
}

.footer-column.links-column {
    text-align: right;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
}

.phone-link {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    font-size: 14px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-footer-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-column {
        text-align: center !important;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    #atc_landing_header .logo img {
        max-height: 40px;
    }
}
