
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


:root {
    --primary-color: #d64343; 
    --dark-color: #1a1a1a;    
    --text-color: #333;
    --light-gray: #e2e8f0;
    --bg-color: #f7fafc;      
    --white-color: #ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; 
}

.container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
}

hr {
    border: none;
    height: 2px;
    background-color: var(--light-gray);
    margin: 50px 0;
}

h1, h2, h3 {
    color: var(--dark-color);
    font-weight: 700;
}


header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; 
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color); 
}


.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1; 
    text-align: center;
}

.dumbellimg {
    width: 100px;
    margin: 0 auto 20px auto;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.deal {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 15px;
}

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-image {
    flex: 1; 
    text-align: center;
}

.gymimg {
    max-width: 100%;
    width: 450px; 
    height: auto;
}


   
.btn {
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: #b93232;
    border-color: #b93232;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}
.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}


.section2 {
    padding: 20px 0;
}

.section2 .section-title, .section3 .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section2 > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.box {
    background: var(--white-color);
    border: 3px solid var(--dark-color); 
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.box.recommended {
    border-color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.box h2 {
    font-size: 1.8rem;
    padding: 15px 0;
}

.box ul {
    list-style-type: none;
}

.box ul li {
    margin: 15px 0;
}

.highlighted {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.highlighted small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}



.section3 {
    padding: 20px 0;
}

.plantable {
    overflow-x: auto; 
}

.table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 15px;
    border-bottom: 2px solid var(--dark-color); 
    text-align: center;
}

.table thead th {
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 1.2rem;
}

.table tbody th {
    text-align: left;
    font-weight: 600;
}

.table tbody tr:nth-child(even) {
    background-color: #e9ecef; 
}


.contact-info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    border: 2px solid var(--dark-color);
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.info-block i {
    color: var(--primary-color);
    margin-right: 8px;
}
.info-block p {
    margin: 0 0 10px 0;
}
.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.social-icons a {
    font-size: 2rem; 
    margin: 0 10px;
    color: var(--dark-color);
    transition: color 0.3s;
}
.social-icons a:hover {
    color: var(--primary-color);
}

footer {
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}


@media (max-width: 768px) {
    
    nav ul {
        display: none;
    }

    .hero-content {
        flex-direction: column-reverse; 
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .gymimg {
        width: 300px;
    }
    
    .boxes {
        flex-direction: column;
        align-items: center;
    }
}
