/* TCTTA Theme - Matching original Weebly dark style */

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

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

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background: #222222;
    font-size: 15px;
}

a { color: #5b9bd5; text-decoration: none; }
a:hover { color: #7bb8e8; text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
}

strong { color: #ffffff; }

/* Header - dark bar matching original */
.site-header {
    background: #111111;
    border-bottom: 1px solid #333;
    padding: 0;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.site-title a { color: #ffffff; text-decoration: none; }
.site-title small { display: block; font-size: 0.65rem; opacity: 0.6; letter-spacing: 1px; font-weight: 400; }

/* Navigation - matching original tab style */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.site-nav a {
    color: #cccccc;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
    background: #333333;
    border-color: #444;
    text-decoration: none;
}

/* Hero area with TCTTA banner */
.hero {
    background: #1a1a1a;
    text-align: center;
    padding: 5rem 1rem;
    border-bottom: 1px solid #333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-banner {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
}

/* Main Content */
.content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Sections - no card style, just separated content blocks */
.section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section h3 {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
}

/* Override card style to match dark theme */
.card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.card:last-child {
    border-bottom: none;
}

.card h2 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8b0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card h3 {
    color: #cccccc;
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
}

.schedule-table th,
.schedule-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.schedule-table th {
    background: #8b0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table td {
    color: #cccccc;
}

.schedule-table tr:hover td {
    background: #2a2a2a;
}

/* Price Badge */
.price-badge {
    display: inline-block;
    background: #8b0000;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    margin: 0.5rem 0;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 1px solid #333;
    transition: opacity 0.2s;
}

.gallery img:hover {
    opacity: 0.85;
}

/* Facility specs */
.facility-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.spec-item {
    background: #2a2a2a;
    padding: 0.75rem;
    border: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.spec-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid #555;
}

.team-member h3 {
    color: #ffffff;
    margin-bottom: 0.15rem;
    font-size: 1rem;
}

.team-member .role {
    color: #cc3333;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.85rem;
    color: #aaa;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.value-item {
    text-align: center;
    padding: 1.25rem;
    background: #2a2a2a;
    border: 1px solid #333;
}

.value-item strong {
    display: block;
    color: #cc3333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

/* Links page */
.link-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.link-card:last-child {
    border-bottom: none;
}

.link-card:hover {
    background: transparent;
}

.link-card h3 a {
    color: #5b9bd5;
    font-size: 1rem;
}

.link-card p {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Footer */
.site-footer {
    background: #111111;
    color: #777;
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

.site-footer a { color: #999; }
.site-footer a:hover { color: #ffffff; }

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-contact { margin-top: 0.25rem; }

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
    .site-nav ul { justify-content: center; flex-wrap: wrap; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .link-card { flex-direction: column; text-align: center; }
}
