/* ==================== PAGE HERO ==================== */
.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(165, 14, 51, 0.1) 0%, transparent 70%);
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.page-subtitle {
    font-size: 1.125rem;
    letter-spacing: 2px;
    color: var(--gray-text);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    padding: 4rem 2rem;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--gray-text);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.about-intro p.visible {
    animation-play-state: running;
}

.about-intro p:nth-child(2) {
    animation-delay: 0.2s;
}

.vision-mission {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(165, 14, 51, 0.05), transparent);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card {
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.vision-card.visible {
    animation-play-state: running;
}

.vision-card:nth-child(2) {
    animation-delay: 0.2s;
}

.vision-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    background: rgba(165, 14, 51, 0.05);
}

.card-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.vision-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.vision-card p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.core-values {
    padding: 6rem 2rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.value-card.visible {
    animation-play-state: running;
}

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }
.value-card:nth-child(5) { animation-delay: 0.4s; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(165, 14, 51, 0.3);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--gray-text);
}

/* ==================== MUSIC PAGE ==================== */
.album-hero {
    padding: 4rem 2rem;
    text-align: center;
}

.album-info {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.album-label {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    display: block;
    margin-bottom: 1rem;
}

.album-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.album-date {
    font-size: 1.125rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.album-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.tracklist {
    padding: 4rem 2rem;
    background: rgba(165, 14, 51, 0.03);
}

.tracklist-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3rem;
}

.track-list {
    max-width: 800px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.track-item.visible {
    animation-play-state: running;
}

.track-item:nth-child(2) { animation-delay: 0.1s; }
.track-item:nth-child(3) { animation-delay: 0.2s; }
.track-item:nth-child(4) { animation-delay: 0.3s; }
.track-item:nth-child(5) { animation-delay: 0.4s; }
.track-item:nth-child(6) { animation-delay: 0.5s; }

.track-item:hover {
    padding-left: 2rem;
    background: rgba(165, 14, 51, 0.05);
}

.track-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gray-text);
    min-width: 40px;
}

.track-name {
    flex: 1;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.streaming-platforms {
    padding: 6rem 2rem;
    text-align: center;
}

.platforms-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.platform-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--light-text);
    display: block;
}

.platform-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background: rgba(165, 14, 51, 0.05);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-name {
    font-size: 1.125rem;
    letter-spacing: 1.5px;
}

/* ==================== MINISTRY PAGE ==================== */
.ministry-intro {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.ministry-intro.visible {
    animation-play-state: running;
}

.ministry-intro p {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.ministry-focus {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(165, 14, 51, 0.05), transparent);
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ministry-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.ministry-card.visible {
    animation-play-state: running;
}

.ministry-card:nth-child(2) { animation-delay: 0.1s; }
.ministry-card:nth-child(3) { animation-delay: 0.2s; }
.ministry-card:nth-child(4) { animation-delay: 0.3s; }
.ministry-card:nth-child(5) { animation-delay: 0.4s; }

.ministry-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    background: rgba(165, 14, 51, 0.05);
}

.ministry-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.heart-ministry {
    padding: 6rem 2rem;
    text-align: center;
}

.heart-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(165, 14, 51, 0.03);
}

.heart-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.heart-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-style: italic;
    line-height: 2;
    color: var(--gray-text);
    border-left: 2px solid var(--primary-red);
    padding-left: 2rem;
    margin: 0;
}

.outreach-section {
    padding: 6rem 2rem;
}

.outreach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.outreach-card {
    padding: 2rem;
    border-left: 2px solid var(--primary-red);
    background: rgba(165, 14, 51, 0.03);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.outreach-card.visible {
    animation-play-state: running;
}

.outreach-card:nth-child(2) { animation-delay: 0.1s; }
.outreach-card:nth-child(3) { animation-delay: 0.2s; }
.outreach-card:nth-child(4) { animation-delay: 0.3s; }

.outreach-card:hover {
    transform: translateX(10px);
    background: rgba(165, 14, 51, 0.08);
}

.outreach-card p {
    font-size: 1.063rem;
    line-height: 1.8;
}

/* ==================== BOOKINGS PAGE ==================== */
.booking-intro {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.booking-types {
    padding: 4rem 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.booking-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.booking-card.visible {
    animation-play-state: running;
}

.booking-card:nth-child(2) { animation-delay: 0.1s; }
.booking-card:nth-child(3) { animation-delay: 0.2s; }
.booking-card:nth-child(4) { animation-delay: 0.3s; }
.booking-card:nth-child(5) { animation-delay: 0.4s; }

.booking-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.booking-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.booking-process {
    padding: 6rem 2rem;
    background: rgba(165, 14, 51, 0.03);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(165, 14, 51, 0.3);
    margin-bottom: 1rem;
}

.step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.booking-note {
    padding: 4rem 2rem;
    text-align: center;
}

.note-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(165, 14, 51, 0.03);
}

.note-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.note-content p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--gray-text);
}

/* ==================== CONTACT PAGE ==================== */
.contact-intro {
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.contact-details {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-play-state: paused;
}

.contact-card.visible {
    animation-play-state: running;
}

.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.2s; }

.contact-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-card a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-red);
}

.contact-form-section {
    padding: 6rem 2rem;
    background: rgba(165, 14, 51, 0.03);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--light-text);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-red);
    color: var(--light-text);
    border: 1px solid var(--primary-red);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary-red);
}

.enquiries-section {
    padding: 4rem 2rem;
}

.enquiries-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.enquiries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.enquiry-tag {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    letter-spacing: 1.5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .vision-grid,
    .ministry-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .heart-content {
        padding: 2rem;
    }

    .heart-content blockquote {
        font-size: 1.125rem;
        padding-left: 1rem;
    }

    .album-title {
        font-size: 2.5rem;
    }

    .track-item {
        gap: 1rem;
    }

    .track-item:hover {
        padding-left: 1.5rem;
    }
}
