/* =========================
ROOT VARIABLES
========================= */

:root {

--charcoal-black: #171717;
--graphite: #242424;
--warm-white: #F5F3EE;
--stone: #E8E5DE;
--muted-gold: #B49A68;
--deep-charcoal: #1C1C1C;
--warm-gray: #6F6B63;
--soft-gray: #D8D4CC;

--primary-dark: var(--charcoal-black);
--secondary-dark: var(--graphite);
--main-background: var(--warm-white);
--secondary-background: var(--stone);
--accent: var(--muted-gold);
--main-text: var(--deep-charcoal);
--seconday-text: var(--warm-gray);
--borders: var(--soft-gray);
}

/* =========================
GLOBAL RESET
========================= */

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

body {
font-family: "Manrope", sans-serif;
background: var(--main-background);
color: var(--main-text);
scroll-behavior: smooth;
}

/* =========================
CONTAINER
========================= */

.container {
width: 90%;
max-width: 1150px;
margin: auto;
}

/* =========================
HEADER (Premium Glass Effect)
========================= */

.header {
position: sticky;
top: 0;
z-index: 1000;
background: var(--secondary-background);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--borders);
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;
}

.logo {
font-family: "Manrope", sans-serif;
font-weight: 800;
font-size: 22px;
color: var(--accent);
letter-spacing: 1px;
text-transform: uppercase;
}

.nav a {
color: var(--primary-dark);
text-decoration: none;
margin-right: 18px;
font-size: 14px;
transition: 0.3s;
position: relative;
}

.nav a::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: 0.3s;
}

.nav a:hover::after {
width: 100%;
}

.nav a:hover {
color: var(--accent);
}

/* =========================
HERO (Strong Impact Section)
========================= */

.hero {
height: 100vh;
display: flex;
align-items: center;
text-align: center;
position: relative;
background: url("assets/images/gym.webp ") center/cover no-repeat;
}

.hero::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(245, 243, 238,0.4), var(--secondary-dark));
}

.hero .container {
position: relative;
z-index: 2;
}

.hero h1 {
font-family: "Manrope", sans-serif;
font-size: 52px;
font-weight: 800;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 1px;
backdrop-filter: blur(4px);
}

.hero p {
color: var(--main-text);
font-size: 18px;
margin-bottom: 25px;
backdrop-filter: blur(4px);
}

/* CTA Button */
.btn {
display: inline-block;
padding: 14px 30px;
background: var(--accent);
color: white;
font-weight: 700;
text-decoration: none;
border-radius: 6px;
transition: 0.3s;
box-shadow: 0 10px 30px rgba(255,45,45,0.25);
}

.btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

/* =========================
SECTIONS
========================= */

section {
padding: 90px 0;
}

h2 {
text-align: center;
font-family: "Manrope", sans-serif;
font-size: 34px;
margin-bottom: 50px;
color: var(--main-text);
position: relative;
}

h2::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--accent);
margin: 10px auto 0;
}

/* =========================
SERVICES (Hover Lift Cards)
========================= */

.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.service-card {
background: linear-gradient(145deg, var(--secondary-background), var(--secondary-background));
padding: 25px;
border-radius: 12px;
border: 1px solid var(--borders);
text-align: center;
transition: 0.3s ease;
position: relative;
overflow: hidden;
}

.service-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at top, color-mix(in srgb, var(--accent) 35%, transparent), transparent);
opacity: 0;
transition: 0.3s;
}

.service-card:hover {
transform: translateY(-8px);
border-color: var(--accent);
}

.service-card:hover::before {
opacity: 1;
}

/* =========================
PRICING
========================= */

.pricing-table {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.price-item {
background: var(--secondary-background);
padding: 25px;
border-radius: 12px;
border: 1px solid var(--borders);
text-align: center;
transition: 0.3s;
}

.price-item:hover {
transform: scale(1.05);
border-color: var(--accent);
}

.price-item p {
font-size: 22px;
color: var(--accent);
margin-top: 10px;
font-weight: bold;
}

/* =========================
TESTIMONIALS
========================= */

.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.testimonial {
background: var(--secondary-background);
padding: 25px;
border-radius: 12px;
border-left: 3px solid var(--accent);
position: relative;
}

.testimonial p {
color: var(--muted);
}

/* =========================
CONTACT
========================= */

.contact form {
max-width: 550px;
margin: auto;
display: flex;
flex-direction: column;
gap: 15px;
}

.contact input,
.contact select,
.contact textarea {
padding: 14px;
background: var(--secondary-background);
border: 1px solid var(--borders);
border-radius: 8px;
color: var(--main-text);
outline: none;
transition: 0.3s;
}

.contact input:focus,
.contact textarea:focus {
border-color: var(--borders);
box-shadow: 0 0 10px rgba(255,45,45,0.2);
}

.contact button {
padding: 14px;
background: var(--accent);
border: none;
color: var(--main-text);
font-weight: bold;
cursor: pointer;
border-radius: 8px;
transition: 0.3s;
}

.contact button:hover {
background: var(--primary-dark);
color: var(--accent);
}

.contact .social img:hover {
	transform: scale(1.02);
}

/* =========================
SOCIAL
========================= */

.social {
text-align: center;
margin-top: 25px;
}

.social a {
color: var(--accent);
margin: 0 12px;
text-decoration: none;
font-weight: bold;
}

/* =========================
FOOTER
========================= */

.footer {
text-align: center;
padding: 25px;
border-top: 1px solid var(--borders);
color: #666;
font-size: 14px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {
.service-grid,
.pricing-table,
.testimonial-grid {
grid-template-columns: 1fr;
}

.hero h1 {
    font-size: 34px;
}

.nav {
    display: none;
}


}
