/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #e8daf0;
}

.about-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-body .about-page {
    flex: 1;
}

.about-body .footer {
    margin-top: auto;
}

a {
    text-decoration: none;
}

/* ===== Navigation ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background-color: #261055;
}

.navbar a {
    color: #e8daf0;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.navbar a:hover {
    color: #98B8FF;
}

/* Mae Rivers title img */
.hero {
    background-color: #e8daf0;
    padding: 30px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
}


/* ===== About Section ===== */
.about {
    background-color: #261055;
    padding: 40px 20px 50px;
    display: flex;
    justify-content: center;
}

.about-box {
    padding: 35px 25px 35px;
    width: 100%;
    max-width: 600px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.about-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('img/border.png') center/100% 100% no-repeat;
    pointer-events: none;
    z-index: 0;
}

.about-box > * {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Covered By Your Grace', cursive;
    color: #e8daf0;
    font-size: 28px;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.title-sparkle {
    height: 1em;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.section-title.dark {
    color: #e8daf0;
}

.about-text {
    color: rgba(232, 218, 240, 0.8);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    flex: 1;
    max-width: 450px;
}

.btn-learn-more {
    display: inline-block;
    margin-top: auto;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-learn-more img {
    display: block;
    width: 140px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 14, 62, 0.2);
}

/* Extras */
.extras {
    background-color: #261055;
    padding: 50px 20px 60px;
    text-align: center;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    max-width: 500px;
    margin: 30px auto 0;
}

.extras-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1e0e3e;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}

.extras-btn img {
    width: 100%;
    height: auto;
    display: block;
}

.extras-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 14, 62, 0.2);
}

/* Footer */
.footer {
    background-color: #1e0e3e;
    min-height: 180px;
    font-size: small;
    color: #e8daf0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
}

.footer-nav a:not(.back-to-top) {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer a:not(.back-to-top) {
    color: inherit;
}

.footer a:not(.back-to-top):hover {
    color: #98B8FF;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.social-links img {
    width: 24px;
    height: 24px;
    display: block;
}

.back-to-top {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: #e8daf0;
    color: #1e0e3e;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 14, 62, 0.2);
}

.shows-page {
    background-color: #e8daf0;
    padding: 40px 20px 60px;
    display: flex;
    justify-content: center;
}

.shows-list-wrap {
    width: 100%;
    max-width: 760px;
}

.shows-title {
    color: #261055;
    letter-spacing: 2px;
    font-size: 30px;
    margin-bottom: 8px;
}

.shows-subtitle {
    color: rgba(38, 16, 85, 0.8);
    font-size: 14px;
    margin-bottom: 22px;
}

.shows-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.show-item {
    background-color: #261055;
    border-radius: 10px;
    padding: 16px;
    display: grid;
    gap: 6px;
}

.show-date {
    color: #e8daf0;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.show-details {
    color: rgba(232, 218, 240, 0.85);
    font-size: 14px;
}

.ticket-link {
    width: fit-content;
    margin-top: 4px;
    background-color: #e8daf0;
    color: #261055;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
    padding: 8px 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.ticket-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 14, 62, 0.2);
}
/* About */

.about-page {
    background-color: #261055;
    padding: 40px 20px 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.about-title{
    font-family: 'Covered By Your Grace', cursive;
    color: #e8daf0;
    font-size: 28px;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
 
.about-page .about-text {
    max-width: 700px;
    text-align: center;
}

.about-page p {
    text-align: center;
}

.about-logo {
    display: block;
    width: auto;
    max-width: min(100%, 900px);
    max-height: 60vh;
    height: auto;
    object-fit: contain;
    margin: 24px auto 0;
}
h3 {
    font-weight:400;
    font-family: 'Covered By Your Grace', cursive;
    color: #e8daf0;
}
/* Contact */
.contact-page {
    background: #e8daf0;
    padding: 48px 20px 72px;
}

.contact-layout {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    align-items: center;
}

.contact-copy {
    color: #261055;
    display: grid;
    gap: 14px;
}

.contact-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(38, 16, 85, 0.7);
}

.contact-title {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 20px;
    line-height: 0.95;
    font-weight: 800;
}

.contact-text {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(38, 16, 85, 0.78);
}

.contact-form-box {
    background-color: #261055;
    border-radius: 28px;
    padding: 26px 22px;
    box-shadow: 0 20px 45px rgba(38, 16, 85, 0.22);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-label, p  {
    color: #e8daf0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(232, 218, 240, 0.18);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    font: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 218, 240, 0.58);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #98B8FF;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(152, 184, 255, 0.16);
}

.contact-button {
    justify-self: start;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.15s, filter 0.15s;
    display: flex;
    align-items: center;
}

.contact-button img {
    display: block;
    width: 140px;
    height: auto;
    max-width: 100%;
}

.contact-button:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(30, 14, 62, 0.2));
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 14, 62, 0.24);
}

/*Responsive */
@media (min-width: 768px) {
    .navbar {
        padding: 16px 60px;
    }

    .navbar a {
        font-size: 15px;
    }

    .hero {
        padding: 50px 40px 60px;
        min-height: 420px;
    }

    .hero-content {
        max-width: 600px;
    }

    .about {
        padding: 50px 30px 60px;
    }

    .about-box {
        padding: 40px 40px 40px;
        min-height: 280px;
    }

    .section-title {
        font-size: 34px;
    }

    .footer-nav {
        gap: 16px 28px;
    }

    .extras-grid {
        max-width: 600px;
        gap: 24px 40px;
    }

    .shows-page {
        padding: 60px 30px 80px;
    }

    .shows-title {
        font-size: 38px;
    }

    .shows-subtitle,
    .show-details,
    .show-date {
        font-size: 15px;
    }

    .show-item {
        padding: 18px 20px;
    }

    .contact-page {
        padding: 68px 30px 96px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 42px;
    }

    .contact-title {
        font-size: 82px;
    }

    .contact-form-box {
        padding: 34px 32px;
    }

}
