/* ========================================
   EASTER 2025 - ZION CITY CHURCH
   ======================================== */

/* Hero Section */
.easter-hero-section {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.easter-hero-section video {
    background-color: #000;
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 115%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: -3;
    background-size: cover;
}

.moving--with--mouse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    max-width: 80vw;
    height: auto;
    pointer-events: none;
    z-index: 5;
}

.moving--with--mouse.active {
    animation: none;
}

.easter-content {
    position: relative;
    z-index: 10;
}

.easter-logo {
    animation: fadeInScale 1.2s ease-out forwards;
    opacity: 0;
    transform: scale(0.9);
    max-width: 600px;
    width: 100%;
}

/* Light Particles */
.light-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.6;
}

/* Rotating Background Elements */
.rotating--left {
    position: absolute;
    left: 0;
    top: 60px;
    animation: slideLeftToRight 90s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
    width: 100%;
    z-index: 1;
}

.rotating--right {
    position: absolute;
    right: 0;
    bottom: 60px;
    animation: slideRightToLeft 90s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
    width: 100%;
    z-index: 1;
}

/* Service Cards */
.easter-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background: #E5D3BB;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card-title {
    font-size: 28px;
    font-weight: 700;
    min-height: 70px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.service-card-times {
    font-size: 20px;
    color: #6b5b4b;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
}

.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-button {
    background: white;
    color: #5a4a3a;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-card-button:hover {
    background: #5a4a3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Good Friday Section */
.goodfriday-section {
    position: relative;
    perspective: 1000px;
}

.goodfriday-window {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter;
    transform-style: preserve-3d;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: floatSubtle 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

.goodfriday-window.active {
    animation: none;
}

/* What to Expect Section */
.easter-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

 

.info-card.image-card {
    padding: 0;
    background: #333;
}

.info-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.info-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.info-card:nth-child(2) { grid-column: 2; grid-row: 1 / 2; }
.info-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.info-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.info-card:nth-child(5) { grid-column: 2; grid-row: 2; }
.info-card:nth-child(6) { grid-column: 3; grid-row: 2; }

.info-card-title {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.info-card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.junior-high-connect-section {
    padding-top: 20px;
    padding-bottom: 70px;
}

.junior-high-connect-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.junior-high-connect-image-col {
    display: flex;
    justify-content: flex-end;
}

.junior-high-connect-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.junior-high-connect-copy-col {
    padding-left: 10px;
}

.junior-high-connect-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin: 0 0 8px 0;
}

.junior-high-connect-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 18px 0;
    line-height: 1.2;
}

.junior-high-connect-text {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.junior-high-connect-button-row {
    margin-top: 35px;
}

/* Invite Friends Section */
.invite-section {
    padding: 80px 20px;
    background-color: #D7C3A8;
}

.invite-container {
    max-width: 1200px;
    margin: 0 auto;
}

.invite-title {
    text-align: center;
    margin-bottom: 60px;
}

.invite-title img {
    max-width: 400px;
    height: auto;
    width: 100%;
}

.invite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.invite-card {
    position: relative;
    border-radius: 32px;
    border: 4px solid white;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.invite-card-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.invite-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D7C3A8;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
}

.invite-card:hover .invite-card-image {
    opacity: 0;
}

.invite-card:hover .invite-card-overlay {
    opacity: 1;
}

.invite-text {
    color: #2c2c2c;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}

.invite-socials {
    display: flex;
    gap: 16px;
}

.invite-social-link {
    width: 44px;
    height: 44px;
    background-color: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.invite-social-link:hover {
    background-color: #444;
}

.invite-social-link svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideLeftToRight {
    0%, 100% {
        transform: translateX(-30%);
    }
    50% {
        transform: translateX(30%);
    }
}

@keyframes slideRightToLeft {
    0%, 100% {
        transform: translateX(30%);
    }
    50% {
        transform: translateX(-30%);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet & Medium Screens */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 15px);
    }

    .invite-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .invite-text {
        font-size: 20px;
    }

    .easter-logo {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .easter-info-grid {
        grid-template-columns: 1fr;
    }

    .info-card:nth-child(1),
    .info-card:nth-child(2),
    .info-card:nth-child(3),
    .info-card:nth-child(4),
    .info-card:nth-child(5),
    .info-card:nth-child(6) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .info-card.image-card {
        min-height: 300px;
    }

    .junior-high-connect-section {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .junior-high-connect-row {
        display: block;
    }

    .junior-high-connect-image {
        margin: 0 auto 24px auto;
        max-width: 520px;
    }

    .junior-high-connect-image-col {
        justify-content: center;
    }

    .junior-high-connect-copy-col {
        padding-left: 15px;
        max-width: 720px;
        margin: 0 auto;
    }

    .junior-high-connect-title {
        font-size: 34px;
    }

    .junior-high-connect-subtitle {
        font-size: 21px;
    }

    .junior-high-connect-text {
        font-size: 18px;
    }

    .junior-high-connect-button-row {
        margin-top: 24px;
    }

    .rotating--left,
    .rotating--right {
        opacity: 0.2;
    }
}

/* Mobile */
@media (max-width: 768px) {
   body .fz-32 {
            font-size: 22px;
            line-height: 1.2;
        }
    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .easter-services-list {
        gap: 20px;
    }

    .service-card-title {
        font-size: 24px;
        min-height: auto;
    }

    .easter-logo {
        max-width: 400px;
    }

    .moving--with--mouse {
        max-width: 90vw;
    }

    .goodfriday-section .lead {
        font-size: 16px;
    }

    .rotating--left,
    .rotating--right {
        display: none;
    }

    .junior-high-connect-title {
        font-size: 30px;
    }

    .junior-high-connect-subtitle {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .junior-high-connect-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    .invite-section {
        padding: 60px 16px;
    }

    .invite-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invite-title img {
        max-width: 280px;
    }

    .invite-card-overlay {
        padding: 32px;
    }

    .invite-text {
        font-size: 18px;
    }

    .invite-socials {
        gap: 12px;
    }

    .invite-social-link {
        width: 40px;
        height: 40px;
    }

    .invite-social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 24px;
        min-width: 100%;
    }

    .service-card-title {
        font-size: 28px;
    }

    .service-card-times {
        font-size: 14px;
    }

    .service-card-button {
        padding: 12px 24px;
        font-size: 12px;
    }

    .easter-logo {
        max-width: 300px;
    }

    .info-card {
        padding: 24px;
    }
 

    .info-card-text {
        font-size: 13px;
    }
}
