@charset "utf-8";
/* CSS Document */
div.wrapper {width: 1140px; 
	margin: 0 auto
}
div.header {
    width: 100%;
    height: 115px;
    padding-top: 5px;
    padding-bottom: 10px;

    position: relative;

    background: linear-gradient(to bottom, #d24b4d 0%, #bf4446 40%, #a00000 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

body.trainer {
    background-image: url("gymequipment.jpg");
}

body.tour {
    background-image: url("boxingbags.jpg");
}

body.membership {
    background-image: url("boxinggym.jpg");
}
div.content{}
div.footer{}
body {background-color: lightslategray;}

body {
    margin: 0;
    min-height: 100vh;
    background:
        url("the-ring-portrait.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-cta {
    position: absolute;
    right: 40px;
    top: 35px;

    color: white;
    font-family: Gotham;
    font-size: 24pt;
    font-weight: bold;
    letter-spacing: 2px;
}

a.links {font-family:Gotham; font-size:20pt; color: black; margin: 10px 10px;}

div.header li{float:right; margin-right: 25px; text-decoration: none}
div.header ul{display:inline-block; margin: 25px 150px 10px; list-style: none}
div.header a{display:inline-block; text-decoration:none; }
div.header a.links:hover{
  background: #d24b4d;
}

img.logo {width: 75px; height: 75px; margin: 20px 0px 10px 20px}

/* ABOUT PAGE CONTENT STYLES */
.panel{
  background: rgba(0,0,0,0.70);
  padding: 30px;
  border-radius: 10px;
  margin: 25px 0;
}

.panel h1, .panel h2{
  color: white;
  margin-top: 0;
}

.panel p, .panel li{
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.6;
}

.grid{
  display: flex;
  gap: 20px;
}

.grid .panel{
  flex: 1;
}

.bullets{
  margin: 0;
  padding-left: 20px;
}

/* BUTTON (re-usable) */
a.cta{
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  background: #c00000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

a.cta:hover{
  background: #ff1a1a;
}

/* HOME HERO */
.hero {
  text-align: left;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 18px;
}

/* Optional outline button */
a.cta.outline {
  background: transparent;
  border: 2px solid #c00000;
  color: white;
}

a.cta.outline:hover {
  background: #c00000;
  color: white;
}

/* TOUR SCHEDULE TABLE */
.schedule-wrap {
  overflow-x: auto;
}

table.schedule {
  width: 100%;
  border-collapse: collapse;
  color: #e6e6e6;
  font-size: 14px;
}

table.schedule th,
table.schedule td {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  text-align: center;
}

table.schedule th {
  background: rgba(192,0,0,0.85);
  color: white;
}

table.schedule td.time {
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: bold;
  width: 110px;
}

/* TRAINERS GRID */
.trainer-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trainer-card {
  background: rgba(0,0,0,0.75);
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.trainer-img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.role {
  color: #ff4d4d;
  font-weight: bold;
}

.specialty {
  font-size: 14px;
  color: #e6e6e6;
}

body {
    color: white;
}