/* ================================================ */
/* FRESH START - CLEAN CUSTOM STYLES              */
/* ================================================ */

.sectiontitle { font-size:30px; width:100%; display:block}
.clientlink { font-size:10pt}
.client img { width:100px; }
/* Basic layout styles */
.upperRight {
    text-align: right;
    margin-bottom: 20px;
}
.client { display:inline-block; padding:20px; color:black}
.clientlink a { color:#555}
/* ================================================ */
/* SCHEDULE CONTAINER - BASE STYLES               */
/* ================================================ */
.schedule-now-container {
    background-color: #c8e6c9;
    color: black;
    padding: 12px 0;
    position: fixed;
    top: 0px;
    height: 100px;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ================================================ */
/* DESKTOP STYLES - DEFAULT (CLEAN & SIMPLE)      */
/* ================================================ */

/* Desktop: Hide mobile menu by default */
#mobile-menu {
    display: none;
}

/* Desktop: Show desktop menu */
#desktop-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/* Desktop: Logo section */
#desktop-menu .schedule-logo {
    flex: 0 0 auto;
}

/* Desktop: Title section */
#desktop-menu .schedule-left-section {
    flex: 0 0 auto;
    margin-left: 20px;
}

#desktop-menu .schedule-navbar-title {
    font-size: 2.1rem;
    color: #000;
    font-family: "haboro-serif-extended", serif;
    font-weight: 700;
    white-space: nowrap;
}

/* Desktop: Button section */
#desktop-menu .schedule-right-section {
    flex: 1;
    text-align: right;
    padding-left: 20px;
}

#desktop-menu .schedule-now-link {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

#desktop-menu .schedule-now-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

#desktop-menu .schedule-now-subtext {
    font-size: 0.9rem;
    color: #777;
}

#desktop-menu .schedule-now-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* ================================================ */
/* MAIN CONTENT SPACING                            */
/* ================================================ */
main {
    padding-top: 120px; /* Space for fixed header */
}

/* ================================================ */
/* RESPONSIVE ADJUSTMENTS                          */
/* ================================================ */
@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        text-align: left;
    }
    
    .welcome-section > div {
        margin-bottom: 20px;
    }
}

/* ================================================ */
/* MOBILE-SPECIFIC OVERRIDES                       */
/* Mobile.css handles the main mobile styles       */
/* These are just cleanup/fallback styles          */
/* ================================================ */
@media (max-width: 1000px) {
    
    /* Ensure mobile menu shows */
    #mobile-menu {
        display: block !important;
    }
    
    /* Ensure desktop menu hides */
    #desktop-menu {
        display: none !important;
    }
}


blockquote {
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    width: 500px;
    margin: 0.25em 0;
    padding: 0.35em 40px;
    line-height: 1.45;
    position: relative;
    color: #383838;
}

blockquote:before {
    display: block;
    padding-left: 10px;
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -20px;
    color: #7a7a7a;
}

blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

blockquote cite:before {
    content: "\2014 \2009";
}