/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Color Scheme */
:root {
    --cyan: #00C4FF;
    --orange: #FFAA00;
    --black: #000000;
    --light-gray: #F5F5F5;
}

/* Navigation */
.navbar {
    background-color: var(--cyan);
}

.navbar-brand {
    font-weight: bold;
}

.logo {
    height: 50px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--orange);
}

/* Marquee */
.marquee {
    background-color: var(--orange);
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    text-align: center;
}

marquee {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300C4FF" fill-opacity="0.2" d="M0,224L48,208C96,192,192,160,288,149.3C384,139,480,149,576,176C672,203,768,245,864,245.3C960,245,1056,203,1152,181.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    z-index: -1; /* Lower z-index to ensure it's behind content */
    pointer-events: none; /* Prevent pseudo-element from intercepting clicks */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orange);
    position: relative;
    z-index: 1; /* Ensure text is above pseudo-element */
}

.hero p {
    position: relative;
    z-index: 1; /* Ensure text is above pseudo-element */
}

/* Ensure the button is clickable */
.hero .btn {
    position: relative;
    z-index: 2; /* Higher z-index for the button */
}

/* About Section */
.about {
    background-color: #fff;
}

.about h2 {
    color: var(--orange);
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services h1 {
    color: var(--orange);
}

.services h2 {
    color: var(--black);
}

.service-package {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensure cards in the same row are equal height */
}

.service-package h3 {
    color: var(--orange);
}

.package-includes, .add-ons, .contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-includes h3, .add-ons h3, .contact-info h3 {
    color: var(--orange);
}

.highlight {
    color: var(--orange);
    font-weight: bold;
}

/* Schedule Section */
.schedule {
    background-color: var(--light-gray);
}

.schedule h2 {
    color: var(--orange);
}

/* Calendly Widget */
.calendly-container {
    min-height: 800px; /* Increased height to ensure calendar visibility */
    width: 100%; /* Full width */
    max-width: 900px; /* Increased max width */
    margin: 0 auto; /* Center the widget */
}

/* Buttons */
.btn-primary {
    background-color: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Footer */
footer {
    background-color: var(--black);
    color: #fff;
}

footer a {
    color: var(--cyan);
}

footer a:hover {
    color: var(--orange);
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        height: 40px;
    }

    .calendly-container, .calendly-inline-widget, .calendly-inline-widget iframe {
        min-height: 800px; /* Slightly smaller height for mobile */
        max-width: 100%; /* Full width on mobile */
    }

    .marquee {
        font-size: 1rem;
    }
}

/* General Mobile Adjustments */
body {
    font-size: 16px; /* Base font size for readability */
    line-height: 1.6; /* Improve text readability */
}

/* Navigation */
.navbar {
    padding: 10px 0; /* Reduce padding for mobile */
}

.navbar-brand .logo {
    height: 40px; /* Smaller logo on all screens */
    width: auto;
}

.nav-link {
    font-size: 1rem; /* Smaller nav links for mobile */
    padding: 10px 15px; /* Increase touch target size */
}

/* Marquee Replacement */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--orange);
    color: #fff;
    padding: 8px 0;
    font-size: 1rem;
    text-align: center;
}

.marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 576px) {
    .marquee {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0; /* Reduce padding for mobile */
}

.hero h1 {
    font-size: 2rem; /* Smaller heading on mobile */
    line-height: 1.2;
}

.hero p.lead {
    font-size: 1rem; /* Smaller lead text */
}

.hero .btn-lg {
    font-size: 1rem; /* Smaller button text */
    padding: 10px 20px; /* Adjust button size */
}

/* Services Section */
.service-package {
    padding: 15px; /* Reduce padding for mobile */
    margin-bottom: 20px;
}

.service-package h3 {
    font-size: 1.5rem; /* Smaller headings */
}

.service-package ul {
    font-size: 0.9rem; /* Smaller list text */
}

@media (max-width: 768px) {
    .service-package {
        margin-bottom: 15px;
    }
}

/* Schedule Section (Calendly) */
.calendly-container {
    min-height: 600px; /* Reduced height for mobile */
    width: 100%;
    max-width: 100%; /* Ensure full width */
}

.calendly-inline-widget {
    height: 600px !important; /* Force height for mobile */
}

@media (max-width: 576px) {
    .calendly-container, .calendly-inline-widget {
        min-height: 500px;
        height: 500px !important;
    }
}

/* Contact Section */
.contact-form .form-control {
    font-size: 1rem; /* Larger input text for mobile */
    padding: 10px; /* Increase touch target */
}

.contact-form .btn {
    font-size: 1rem;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        padding: 15px;
    }
}

/* Footer */
.footer-logo {
    height: 30px; /* Smaller logo */
}

footer p {
    font-size: 0.9rem; /* Smaller footer text */
}

@media (max-width: 576px) {
    footer {
        padding: 15px 0;
    }
}

/* Improve Touch Targets */
a, button, .btn {
    touch-action: manipulation; /* Improve touch responsiveness */
    min-height: 44px; /* Minimum touch target size per accessibility guidelines */
    display: flex;
    align-items: center;
    justify-content: center;
}