/* Basic Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

/* Header and Navigation */
header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-image: url('/assets/images/homepage/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 80px; /* To account for fixed header */
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover, .secondary-button:hover {
    background-color: #eee;
}

/* About Me Section */
.about-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5rem 2rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.about-me .about-text {
    width: 60%;
}

.about-me h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.secondary-button {
    background-color: #eee;
}

/* Featured Portfolio Section */
.featured-portfolio {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Footer changes */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.schedule-cta {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.schedule-cta:hover {
    color: #ccc;
}

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    margin: 0 0.75rem;
}

.social-links a:hover {
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .about-me {
        flex-direction: column;
        text-align: center;
    }

    .about-me img, .about-me .about-text {
        width: 100%;
    }

    .hero-section {
        height: 80vh;
    }
}

/* Schedule Page */
.schedule-main {
    padding-top: 80px; /* To account for fixed header */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-header {
    padding: 3rem 1rem;
}

.scheduler-container {
    padding: 2rem 0;
    /* Add styling for the container if needed */
}

/* Contact Form Styling */
.contact-main {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 3rem 1rem;
}

.contact-wrapper {
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#contactForm .form-group {
    margin-bottom: 1.5rem;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

#contactForm textarea {
    resize: vertical;
}

.send-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #0056b3;
}

.contact-details {
    flex: 1;
    background-color: #007bff;
    color: #fff;
    padding: 2rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.details-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.details-group p {
    margin: 0;
}

.icon-placeholder {
    font-size: 1.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}