/* Global Styles */
:root {
    --primary-teal: #3bbca8;
    /* Approximate teal color */
    --primary-dark: #2c3e50;
    --text-color: #555;
    --heading-color: #222;
    --bg-dark: #222;
    --white: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
}

.btn-teal {
    background-color: var(--primary-teal);
    color: var(--white);
    border: 2px solid var(--primary-teal);
}

.btn-teal:hover {
    background-color: transparent;
    color: var(--primary-teal);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
}

.btn-white-outline:hover {
    background-color: var(--heading-color);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #666;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i,
.service-24h i {
    color: var(--primary-teal);
    margin-right: 5px;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text h1,
.logo-text h2 {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text small {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-teal);
    border-bottom: 2px solid var(--primary-teal);
    padding-bottom: 5px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    /* height: 600px;  let content define */
}


.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-box {
    position: absolute;
    bottom: 50px;
    /* Approximate position */
    left: 15%;
    /* Indent */
    background: #fff;
    padding: 30px 40px;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-overlay-box .logo-placeholder {
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-btns .btn {
    font-size: 0.7rem;
    padding: 10px 15px;
}

.hero-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-teal);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #777;
    font-size: 1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.about-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.call-now {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #333;
}

/* Non-Discrimination */
.non-discrimination {
    background-color: #222;
    padding: 60px 0;
    text-align: center;
    color: #ccc;
}

.non-discrimination h3 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    text-transform: lowercase;
    /* as in image */
    font-size: 1.5rem;
}

.non-discrimination p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.service-icon-top {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-item img {
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-item h3 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Additional Services */
.additional-services {
    padding-bottom: 80px;
    background: #fff;
}

.gallery-strip {
    display: flex;
    overflow: hidden;
    margin-bottom: 60px;
}

.gallery-strip img {
    width: 25%;
    /* 4 images */
    height: 250px;
    object-fit: cover;
}

.icon-header {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    text-align: center;
}

.additional-services .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.additional-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
}

.additional-item {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #f4fcfb;
    /* very light teal bg */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle i {
    font-size: 2.5rem;
    color: var(--primary-teal);
}

.additional-item h3 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* What's New */
.whats-new {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.whats-new .divider {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -50px auto 0;
        width: 90%;
    }

    .gallery-strip img {
        width: 50%;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
    /* Image shows white bg for contact section? Or matches body? */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-details {
    flex: 0 0 40%;
}

.contact-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.underline-teal {
    width: 50px;
    height: 3px;
    background-color: var(--primary-teal);
    margin-bottom: 30px;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.95rem;
}

.contact-list i {
    color: #333;
    margin-right: 15px;
    min-width: 20px;
}

.contact-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-desc strong {
    color: #555;
    font-weight: 700;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h3 {
    font-family: var(--font-body);
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.half {
    flex: 1;
}

.form-group.full {
    width: 100%;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    border-radius: 2px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background-color: #fff;
}

.btn-submit {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #2ea695;
    color: #fff;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-teal);
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.btn-cta-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #aaa;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-details {
        margin-bottom: 20px;
    }
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    width: 100%;
    height: 630px;
    background-color: #f0f0f0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imgs/Homepage/slider4.png');
    background-size: cover;
    background-position: center 15%;
    /* Shifting down slightly for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        aspect-ratio: 764 / 482;
        /* Show the full image on mobile */
        background-size: 100% 100%;
        background-position: center;
    }
}

.services-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imgs/Services/paseo-avenues-hallway-cafeteria-jpg.webp');
    background-size: cover;
    background-position: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-padding {

    /* News Grid Styles */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .news-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .news-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        filter: grayscale(100%);
    }

    .news-item:hover img {
        transform: scale(1.05);
        filter: grayscale(0%);
    }

    .news-text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 2;
        padding-right: 20px;
    }

    .news-text h3 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 700;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        margin: 0;
        font-family: var(--font-heading);
    }

    @media (max-width: 768px) {
        .news-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* Core Values Section */
.core-values-section {
    width: 100%;
}

.cv-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.cv-content,
.cv-image {
    width: 50%;
    flex: 1 1 50%;
}

.cv-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.cv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.cv-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-content.white-bg {
    background-color: #fff;
    color: #555;
    text-align: left;
}

.cv-content.teal-bg {
    background-color: var(--primary-teal);
    color: #fff;
    text-align: right;
    /* Matching screenshot 4 */
}

.cv-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: #999;
}

.cv-content.teal-bg .cv-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cv-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.cv-content.teal-bg .cv-title {
    color: #fff;
}

.cv-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 500px;
}

.cv-content.white-bg p {
    margin-right: auto;
    /* Left align block */
}

.cv-content.teal-bg p {
    margin-left: auto;
    /* Right align block */
}

/* Mid Page Banner */
.mid-cta-banner {
    background-color: #222;
    padding: 80px 0;
    text-align: center;
    color: #999;
}

.mid-cta-banner h2 {
    color: #eee;
    /* Light grey text as seen in screenshot */
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mid-cta-banner p {
    color: #888;
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mid-cta-banner .btn-cta-outline {
    border-color: #666;
    color: #aaa;
}

.mid-cta-banner .btn-cta-outline:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .cv-row {
        flex-direction: column;
    }

    .cv-content,
    .cv-image {
        width: 100%;
        flex: auto;
    }

    .cv-image {
        height: 300px;
        min-height: auto;
    }

    .cv-row.reverse {
        flex-direction: column-reverse;
    }

    .cv-content {
        padding: 50px 20px;
        text-align: left !important;
    }

    .cv-content.teal-bg p {
        margin-left: 0;
    }
}

/* Complimentary Services Panel */
.complimentary-services-panel {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.csp-image,
.csp-content {
    width: 50%;
    flex: 1 1 50%;
}

.csp-image {
    position: relative;
    min-height: 500px;
}

.csp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.csp-content {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 100px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.csp-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 10px;
}

.csp-content h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.csp-content ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csp-content ol li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #eee;
    display: flex;
    align-items: baseline;
    line-height: 1.5;
}

.csp-content ol li span {
    margin-right: 15px;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 900px) {
    .complimentary-services-panel {
        flex-direction: column;
    }

    .csp-image,
    .csp-content {
        width: 100%;
        flex: auto;
    }

    .csp-image {
        height: 300px;
        min-height: auto;
    }

    .csp-content {
        padding: 50px 30px;
    }

    .csp-content h2 {
        font-size: 2rem;
    }
}

/* Event List Styles */
.event-list-container {
    max-width: 900px;
    margin: 40px auto;
}

.event-entry {
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.event-entry h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: none;
}

.event-entry .event-info {
    font-size: 0.85rem;
    color: #555;
    margin: 3px 0;
    line-height: 1.4;
}

.event-entry .event-link {
    font-size: 0.85rem;
    margin-top: 8px;
    padding-left: 100px; /* Significant indent as per request layout */
}

@media (max-width: 768px) {
    .event-list-container {
        margin: 20px 0;
    }
    .event-entry .event-link {
        padding-left: 20px;
    }
}

.event-entry .event-link a {
    color: var(--primary-teal);
    text-decoration: none;
}

.event-entry .event-link a:hover {
    text-decoration: underline;
}