@import "style.css";

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

body {
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

/* header {
    background: linear-gradient(135deg, var(--primary), rgba(6, 20, 33, 0.8));
    color: var(--tertiary);
    text-align: center;
    padding: 30px 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--tertiary);
    letter-spacing: 1px;
} */

main {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

section {
    margin-bottom: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--tertiary);
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

section p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.trainer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

article {
    background: rgba(7, 32, 58, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 20px rgba(212, 175, 55, 0.08);
    border: 1px solid var(--glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

article:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

figcaption {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: var(--tertiary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

article h3 {
    color: var(--tertiary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

article p {
    padding: 0 15px;
    margin-bottom: 10px;
    text-align: center;
}

article a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: transparent;
    color: var(--tertiary);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--tertiary);
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 600;
}

article a:hover {
    background-color: var(--tertiary);
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.work-with-us {
    background: rgba(7, 32, 58, 0.5);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass);
    text-align: center;
}

.work-with-us a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: var(--tertiary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.work-with-us a:hover {
    background: #b8860b;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
}

address {
    background: rgba(7, 32, 58, 0.5);
    color: var(--muted);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    font-style: normal;
    line-height: 1.8;
    border: 1px solid var(--glass);
    box-shadow: var(--shadow);
}

footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--muted);
    text-align: center;
    padding: 20px 15px;
    margin-top: 30px;
    border-top: 1px solid var(--glass);
}