:root {
    --primary-color: #ff4500;
    --primary-hover: #e63e00;
    --text-light: rgba(255, 255, 255, 0.9);
    --transition-base: all 0.3s ease;
}

.primary-color{
    color:#ff4500;
}

.primary-button{
    background-color:#ff4500;
    transition: .3s;
    color:white;
}

.primary-button:hover{
    background-color:#db3d03;
    color:white;
}

/* Smooth Scrolling */
html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

.brand-color {
    color: var(--primary-color) !important;
}

.btn-main {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-main:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
}

.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.navbar-toggler {
    border-color: #ff4500;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 69, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
    background-image: url('../img/bg-gym.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Tabel transparan */
.table-custom {
    background-color: rgba(255, 255, 255, 0.05); /* transparansi ringan */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.table-custom th{
    background-color: rgb(185, 185, 185);
    color: black;
}

.table-custom th,
.table-custom td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
    padding: 8px;
}

/* Hover efek */
.table-custom tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


