/* Corpus Christi - Warm & Welcoming Design */
/* Purple theme with diagonal elements and soft curves */

:root {
    --purple-primary: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-light: #c4b5fd;
    --purple-pale: #f5f3ff;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-cream: #fefdfb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
}

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

/* Floating Navigation */
.navbar-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.12);
}

.nav-logo h2 {
    font-size: 22px;
    color: var(--purple-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: var(--purple-primary);
}

.nav-cta {
    background: var(--purple-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--purple-primary);
    border-radius: 2px;
}

/* Hero - Diagonal */
.hero-diagonal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/home-banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--purple-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-text-area h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 15px;
}

.primary-cta {
    background: var(--purple-primary);
    color: white;
}

.primary-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.secondary-cta {
    background: white;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.secondary-cta:hover {
    background: var(--purple-primary);
    color: white;
}

.large {
    padding: 20px 40px;
    font-size: 17px;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    transition: all 0.3s;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.card-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: white;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.card-label {
    font-size: 14px;
    opacity: 0.9;
}

.card-2 {
    top: 140px;
    right: 40px;
}

.card-3 {
    bottom: 20px;
    left: 60px;
}

.card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.card-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: white;
}

/* About Overlap */
.about-overlap {
    padding: 100px 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-main-card {
    background: white;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-main-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: var(--purple-pale);
    padding: 28px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--purple-dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Services Rounded */
.services-rounded {
    padding: 100px 0;
    background: var(--bg-cream);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-item {
    background: white;
    padding: 40px 32px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--purple-light);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
}

.service-item.highlighted {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: white;
}

.service-item.highlighted h3,
.service-item.highlighted p {
    color: white;
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-item.highlighted .service-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 40px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Wave */
.contact-wave {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 100%);
    color: white;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-cream);
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.contact-info-side h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-text p {
    opacity: 0.9;
    line-height: 1.7;
}

.info-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.cta-box {
    background: white;
    color: var(--text-dark);
    padding: 48px 40px;
    border-radius: 32px;
    text-align: center;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--purple-dark);
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.95), transparent);
    color: white;
    padding: 24px 20px 16px;
    font-weight: 600;
    font-size: 16px;
}

/* Footer */
.footer-simple {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 32px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p,
.footer-info p {
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 300px;
    }

    .diagonal-bg {
        width: 100%;
        right: 0;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-floating {
        top: 10px;
        width: 95%;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 24px;
        margin-top: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-diagonal {
        padding: 120px 0 80px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .footer-flex {
        flex-direction: column;
        gap: 24px;
    }
}
