/* 1. Global Styles & Shiny Background */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything horizontally */
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    /* Shiny Metallic Gray Gradient */
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #bebebe 100%);
    color: #1a1a1a;
}

/* 2. Header & Title (Crisp & Bold) */
.title{
    text-align:center;
    font-size: 4rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-weight: 700;
}
.hero {
    text-align: center;
    padding: 60px 0 20px 0;
}

.hero h1 {
    font-size: 4rem; /* Large, impactful size */
    font-weight: 900;
    letter-spacing: -2px; /* Tight tracking for a modern look */
    text-transform: uppercase;
    margin: 0;
}

.hero a {
    text-decoration: none;
    color: #000;
}

/* 3. Navigation Styling */
nav {
    margin-bottom: 40px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #000;
}

/* 4. Button Container */
.button-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top:125px;
    padding-bottom: 50px;
}

/* 5. The Image Buttons */
.image-button {
    position: relative;
    border-radius: 4px; /* Slight roundness for a "pro" feel */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-button:hover {
    transform: translateY(-10px); /* Lifts up on hover */
}

.image-button img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    display: block;
    filter: brightness(60%) grayscale(20%); /* Modern, moody fitness vibe */
}
* 5. The Image Buttons */
.image-button {
    position: relative;
    border-radius: 4px; /* Slight roundness for a "pro" feel */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-button:hover {
    transform: translateY(-10px); /* Lifts up on hover */
}

.image-button img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    display: block;
    filter: brightness(60%) grayscale(20%); /* Modern, moody fitness vibe */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(15, 14, 14);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-align: center;
    width: 100%;
}
/* Add this to make sure your text section has a visible width */
section {
    max-width: 800px;  /* Keeps the text from stretching too wide */
    width: 90%;        /* Responsive width for mobile */
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;    /* Extra insurance for centering */
}

/* Add this to control the hero image size */
.hero img {
    max-width: 100%;   /* Prevents it from being wider than the screen */
    height: auto;
    width: 100px;      /* Adjust this to your preferred size */
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Ensure the paragraph is readable */
section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align:center;
}

/* 6. Footer */
footer {
    margin-top: auto; /* Pushes footer to bottom */
    padding: 40px;
    font-size: 0.8rem;
    color: #888;
}