* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}
body
{
    background-color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    
}
.nav-button
{
    background-color:rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 40px;
    text-decoration: none;
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin: 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.nav-button ul 
{
    list-style-type: none;
    margin: 0;
    gap: 20px;
    padding: 0;
    display: flex;
}
.nav-button a
{
    transition: 0.3s;
    color: #ffffff;
    text-decoration: none;
}
.nav-button a:hover
{
    transform: scale(1.1);
}
.nav-button h1
{
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content
{
    text-align: center;
    color: #ffffff;
}
#home  
{
    background-image: url('team.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -130px;
    
}
#home h2
{
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    
    
}
.h4
{
    font-size: 24px;
    font-weight: 900;
    color: #eec00a;
}
strong
{
    font-weight: 800;
}
.trainer-card
{
    display: flex;
    align-items: center;
    margin-bottom: 150px;
    gap: 50px;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 100px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}
.trainer-photo img 
{
    width: 100%;
    height: 500px;
    object-position: center top;
    object-fit: cover;
    max-width: 500px;
    padding: 0 50px;
    flex: 1;
}
.trainer-card.reverse
{
    flex-direction: row-reverse;
}
.footer
{
    background-color: #222121a7;
    padding: 50px 20px;
    text-align: center;
}
.footer a 
{
    color: #535252;         
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer a:hover 
{
    color: #ffffff;         
    text-decoration: underline;
}
.contact
{
    text-decoration: none;
    margin: 10px 0;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 1. 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.achievements ul
{
    border-left: 2px ;
    margin-left: 20px;
    padding-left: 10px;
}
.read-more
{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
#trainers
{
    max-width: 1200px;
    margin: 0 auto;
}
.trainer-info 
{
    flex: 1; 
    padding: 20px; 
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    letter-spacing: 0.5px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.social-link svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    transition: transform 0.3s, fill 0.3s;
}
.social-link:hover svg {
    fill: #ff0050;
    transform: scale(1.1);
}
.diamond
{
    border: 1px solid #ffffff;
    background: none; 
    transform: rotate(45deg);
    width: 60px;
    height: 60px;
    margin: 0  -15px;
}
.diamond-grid
{
    justify-content: center;
    display: flex; 
}
.logo-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5; 
    pointer-events: none;
    color: #ffffff;
}
.logo-text-group
{
    top: 50%; 
    left: 50%; 
    transform:  translate(-50%, -50%);
    
}
.logo-container 
{
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    margin-bottom: 20px;
}
.social-link[aria-label="TikTok"]:hover svg 
{
    color: #ff0050; 
    filter: drop-shadow(2px 0px 0px #00f2ea); 
    transform: scale(1.2) rotate(-5deg); 
}
.booking-section 
{
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.booking-section h2 
{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 15px;
}

.booking-section p 
{
    color: #888;
    margin-bottom: 40px;
    font-weight: 300;
}

.booking-form 
{
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input 
{
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #111;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.booking-form input:focus 
{
    outline: none;
    border-color: #0055ff; 
    background-color: #1a1a1a;
}

.submit-btn 
{
    padding: 18px;
    background-color: #0055ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 1px;
}

.submit-btn:hover 
{
    background-color: #0044cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 85, 255, 0.3);
}

@media (max-width: 768px) {
    .trainer-card {
        flex-direction: column !important; 
        gap: 20px;
        margin-bottom: 60px; 
        padding: 0 15px; /
    }

    .trainer-card.reverse {
        flex-direction: column !important; 
    }

    .trainer-photo img {
        height: 350px; 
        max-width: 100%;
        padding: 0; 
        border-radius: 10px; 
    }

    .trainer-info {
        text-align: center; 
        padding: 10px 0;
    }

    .trainer-info h3 {
        font-size: 1.5rem; 
        margin-bottom: 10px;
    }

    #trainers {
        padding-top: 50px;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}
.nav-button {
    overflow: visible !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}



@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    
    .nav-button ul {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98); 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s ease-in-out;
        list-style: none;
        margin: 0;
        padding: 0;
        z-index: 99; 
    }

    
    .nav-button ul.active {
        right: 0;
    }

    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    
    .nav-button h1 {
        z-index: 100;
        position: relative;
    }
}
