/* ================================
   General Styles
================================ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root {
    --bg-color: #000000;     /* Black */
    --text-color: #ffffff;   /* White */
    --main-color: #ff0000;   /* Red */
}

body {
    min-height: 100vh;
    background-color: var(--bg-color); /* Set body background to black */
    color: var(--text-color); /* Default text color is white */
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed navbar */
}

/* ================================
   Navigation Bar Styles
================================ */
nav.navbar {
    width: 100%;
    background: var(--bg-color); /* Black background for navbar */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-brand img {
    height: 80px; /* Increased logo size */
    width: auto;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 1rem;
    padding: 8px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Custom white icon */
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--main-color);
    color: var(--text-color);
    border-radius: 4px;
}

.offcanvas {
    background-color: var(--bg-color); /* Black background for offcanvas */
    color: var(--text-color);
}

.offcanvas-title {
    font-size: 1.5rem;
    color: var(--text-color);
}

.btn-close-white {
    filter: invert(1); /* White close button */
}

/* ================================
   Background Image Section
================================ */
.image-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('Background/entry.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-section .overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
}

.image-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.image-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.image-section .btn {
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.image-section .btn:hover {
    background-color: #e60000;
}



/* ================================
   Coach Section
================================ */
.coach-section {
    background-image: url('background\ coach\ intro.png');
    background-color: var(--bg-color); /* Black background */
    color: var(--text-color); /* White text */
    padding: 60px 0;
}

.coach-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.coach-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    padding-left: 30px;
    border-radius: 0px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.coach-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coach-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.coach-info .btn {
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--text-color);
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.coach-info .btn:hover {
    background-color: #e60000;
}

/* ================================
   Services Section
================================ */
.services-section {
    background-image: url('Black-Red-Grunge-Texture.jpg');
    color: var(--text-color);
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--main-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--main-color);
    color: #fff;
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--main-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ================================
   Footer Section
================================ */
.footer-section {
    background: #111;
    color: #ccc;
    padding: 40px 0;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: var(--main-color);
}

.footer-section p {
    font-size: 1rem;
}

.footer-social a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #aaa;
}

/* ================================
   Responsive Styles
================================ */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .offcanvas {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .navbar-brand .title {
        font-size: 1.2rem;
    }
}
