﻿/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.bodybuilding {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    background: url('../images/bodybuilding-background1.jpg') no-repeat center center/cover;
    color: #222;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.cta-container {
    position: relative;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0px;
    font-family: Raleway, sans-serif;
}

/* Semi-transparent overlay for readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.300) 0%, #ffffff 70%);
    z-index: 0;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    margin: 4rem auto 2rem;
    padding: 2rem;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 1rem;
    font-family: Raleway, sans-serif;
    color: #222;
}

header h2 {
    font-size: 2.8rem;
    margin: 0.5rem 0 1.5rem;
    font-weight: 800;
    font-family: Raleway, sans-serif;
}

.message {
    background: rgba(255, 255, 255, .6);
    border-radius: 12px;
    padding: 30px;
}

    .message h3,
    .offer h3 {
        font-size: 2.4rem;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }

    .message p,
    .offer p {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        font-weight: 600;
    }

        .message p.price {
            font-size: 1.5rem;
            font-weight: 800;
        }

.price span {
    color: #e74c3c;
}

/* Button */
.btn {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .btn:hover {
        background: #e64a19;
    }

/* Silhouette Strip */
.silhouette-strip {
    width: 100%;
    height: 200px;
    background: url('../images/silhouettes.png') repeat-x center bottom/contain;
    margin-top: -7rem;
    position: relative;
    z-index: 0;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    padding: 1rem;
    background: #fff;
    /* display: flex;
  justify-content:space-between; */
    font-size: 1.0rem;
    /*max-width: 1920px;
  margin: 0 auto;
  padding-left: 240px;
  padding-right: 240px;*/
}

.bioFitnessLogo {
    max-width: 1366px;
    margin: auto;
    display: flex;
    z-index: 1;
    width: 100%;
    margin-top: 1rem;
}

.biofitnesslogo {
    width: 10%;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content {
        margin: 1rem;
        padding: 0rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header h2 {
        font-size: 1.5rem;
    }

    .message h3 {
        font-size: 1.6rem;
    }

    .silhouette-strip {
        height: 60px;
        background-size: cover;
        margin-top: 0rem;
    }

    .message p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .bioFitnessLogo {
        max-width: 100%;
        width: 80%;
    }

    footer div {
        max-width: 100%;
        justify-content: space-between;
        flex-direction: column;
    }
}
