/*
Theme Name: BBsynr
Theme Uri: na
Author: NA
Author Uri: na
Description: Responsive Wordpress Theme
Version: 1.0
*/

.hero {
    background: url('/wp-content/uploads/2026/01/hero-bg-1.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 200px;
}

.hero h1 {
    font-size: 84px;
    font-weight: 800;
}

.footer p {
    font-size: 14px;
}





@media (max-width: 768px) {
    .hero {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .hero h1 {
        font-size: 44px;
    }
}

/* button  */

.bbsynr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 45px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(
        to bottom,
        #2f7fe8 0%,
        #0f57c8 55%,
        #0a43a8 100%
    );
    text-decoration: none;
    border: 1px solid #0a43a8;
    border-radius: 12px;
    cursor: pointer;

    /* Outer shadow */
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.25) inset;

    /* Smooth interaction */
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bbsynr-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.28),
        0 2px 0 rgba(255, 255, 255, 0.3) inset;
    color:#fff
}

.bbsynr-btn:active {
    transform: translateY(1px);
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}