/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif; /* Modern, clean font */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light background for overall clean feel */
}

/* Header & Navigation */
header {
    background: #222; /* Dark header for contrast */
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700; /* Gold accent for "Coach Drew" */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700; /* Gold on hover */
}

/* Hero Section */
#hero {
    position: relative;
    height: 70vh; /* Make it a bit shorter for impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../img/hero-background.jpg') no-repeat center center/cover;
    /* This path assumes img/hero-background.jpg is correct relative to css/ */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for the main heading */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#hero h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #eee;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #FFD700; /* Gold button */
    color: #222; /* Dark text on button */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

/* Main Content Sections (Placeholder) */
main section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main section:nth-child(even) {
    background-color: #e0e0e0; /* Alternating background for sections */
}


/* Contact Page Specific Styles - Layout and Justification */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Form and info blocks take equal width */
    gap: 40px; /* Space between columns */
    align-items: start; /* Align items to the start of the grid area */
    margin-top: 30px;
}

.contact-form-container,
.contact-info-container {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form-container h4,
.contact-info-container h4 {
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form-container .form-group {
    margin-bottom: 15px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="text"][name="subject"], /* Explicitly target subject input */
.contact-form-container textarea {
    width: 100%;
    margin: 0;
    padding: 12px; /* Slightly more padding for better feel */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in width */
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="text"][name="subject"]:focus,
.contact-form-container textarea:focus {
    border-color: #FFD700; /* Highlight on focus */
    outline: none;
}

.contact-form-container textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 120px; /* Minimum height for textarea */
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
}

/* Responsive Navigation */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100; /* Ensure it's above other content */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide desktop menu on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Below the header */
        left: 0;
        background: #222; /* Same as header */
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    nav ul.nav-active {
        display: flex; /* Show when active */
    }

    nav ul li {
        margin: 10px 0; /* Vertical spacing */
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    #hero .mobile-hero-heading {
        font-size: 8.4vw !important; /* Reduced by 30% from previous setting */
    }

    #hero h2 {
        font-size: 1.5rem !important; /* Reduced by 25% for mobile */
    }
}

/* Services Page Specific Styles */
.service-program {
    border-bottom: 1px solid #ddd; /* Thin light grey line */
    padding-bottom: 30px; /* Space above the line */
    margin-bottom: 30px; /* Space below the line */
}

.service-program:last-child {
    border-bottom: none; /* Remove border from the last item */
    margin-bottom: 0; /* No extra margin after the last item */
    padding-bottom: 0;
}
