/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.btn-appointment {
    background: #0056b3;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: url('imgs/GolfPerformanceCoach.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    font-weight: 300;
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Content Sections */
.intro {
    padding: 60px 0;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.programs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 60px;
}

.program-card {
    text-align: center;
}

.program-card img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.program-card img:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}
/* Additional Styles for About Page */
.page-banner {
    background: #f4f4f4;
    padding: 40px 0;
    border-bottom: 4px solid #0056b3;
    margin-bottom: 40px;
}

.page-banner h1 {
    margin: 0;
    color: #222;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    list-style-type: "✓ ";
    color: #0056b3;
    font-weight: bold;
    margin: 20px 0;
}

.certifications {
    background: #eef6ff;
    border-left: 5px solid #0056b3;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.contact-box {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.contact-box a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}
/* Adult Programs Specific Styles */
.program-block {
    padding: 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.price-card {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin: 10px 0;
}

.clinic-box {
    background: #fff;
    border-left: 6px solid #28a745;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.clinic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.highlight-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.details-flex {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.details-item {
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.dates-list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    font-weight: bold;
    color: #444;
}

.cta-button-alt {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button-alt:hover {
    background: #0056b3;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* Junior Page Specifics */
.junior-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('imgs/wager-jp.jpg');
    background-size: cover;
    color: white;
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.camp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.camp-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-top: 4px solid #0056b3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tag {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 3px;
}

.fee {
    font-weight: bold;
    color: #0056b3;
    margin-top: 15px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background: #0056b3;
    color: white;
}

tr:nth-child(even) { background: #f9f9f9; }

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.special-card {
    background: #222;
    color: white;
    padding: 30px;
    border-radius: 8px;
}
/* Training Page Specifics */
.training-banner {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.status-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    border: 1px solid #ffeeba;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.training-card {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-top: 5px solid #0056b3;
}

.program-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.program-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #444;
}

.tpi-section {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

.tpi-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tpi-box {
    border: 4px solid #333;
    padding: 20px;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    min-width: 150px;
}

@media (max-width: 768px) {
    .training-grid, .tpi-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
/* Online Appointment Page Styles */
.appointment-banner {
    background: #0056b3;
    color: #fff;
    text-align: center;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.booking-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.booking-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.manual-contact {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.email-link {
    font-size: 1.2rem;
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
}

/* Widget Placeholder */
.placeholder-widget {
    background: #fff;
    border: 2px dashed #ccc;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.widget-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .appointment-container {
        grid-template-columns: 1fr;
    }
}