/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    /* Offset for fixed header */
}

:root {
    --bg-color: #050505;
    --surface-color: #111111;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --gold-main: #D4AF37;
    --gold-hover: #b5952f;
    --accent-red: #8b0000;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Header */
header {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-main);
}

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

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
    /* Ensures it fills the circle */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #fff;
}

.nav-links a:hover {
    color: var(--gold-main);
}

.cta-button-nav {
    background-color: var(--gold-main);
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.cta-button-nav:hover {
    background-color: var(--gold-hover);
    color: #000 !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero-bg.jpg');
    /* Placeholder gym image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--gold-main);
}

.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--gold-main);
    color: #000;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--gold-main);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Features/Highlights */
.highlights {
    padding: 80px 0;
    background-color: var(--surface-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.highlight-card {
    background-color: var(--bg-color);
    padding: 40px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--gold-main);
    margin-bottom: 20px;
}

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

.highlight-card p {
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--gold-main);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-image {
    width: 100%;
    height: 400px;
    background-color: #333;
    background-image: url('assets/about-image.jpg');
    /* Dumbbell/Raw img */
    background-size: cover;
    background-position: center;
    border: 2px solid var(--gold-main);
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background-color: var(--surface-color);
    text-align: center;
}

.schedule h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
}

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

.time-slot {
    background-color: var(--bg-color);
    padding: 30px;
    min-width: 280px;
    border-left: 4px solid var(--gold-main);
}

.time-slot h3 {
    margin-bottom: 10px;
    color: var(--gold-main);
}

.time-slot p {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.location-info {
    padding: 50px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location-info address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.location-map {
    width: 100%;
    min-height: 400px;
    background-color: #333;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Footer Section */
.cta-footer {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-footer h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
}

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

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        /* Simple hiding for now, normally would do burger menu */
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 30px;
    }

    .cta-footer h2 {
        font-size: 2.5rem;
    }
}