/* INTRO */
:root {
    --color-black: #000000;
    --color-pink: #D4AF37;      /* Gold */
    --color-magenta: #d100a8;   /* Brand magenta */
    --color-purple: #B76E79;    /* Rose Gold */
    --color-neon-pink: #ff66c4; /* Soft pink highlight */
    --color-white: #FFFFFF;
}

.intro-section {
    background: #ffffff;
    padding: 50px 30px;
    text-align: center;
}

.section-title {
    color: var(--color-magenta);
    font-size: 36px;
    margin-bottom: 20px;
}

.section-text {
    color: #444444;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Global line spacing */
body {
    line-height: 1.5;
}

/* SHOWS */
.shows-section {
    background: #ffffff;
    padding: 10px 30px;
    text-align: center;
}

.shows-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.show-card {
    background: #ffffff;
    border: 1px solid var(--color-magenta);
    padding: 30px;
    width: 280px;
    color: #333333;
    border-radius: 6px;
}

/* GALLERY PREVIEW */
.gallery-preview {
    background: #ffffff;
    padding: 10px 30px;
    text-align: center;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.gallery-thumb {
    width: 200px;
    height: 300px;
    background: #f5f5f5;
    border: 2px solid var(--color-magenta);
    border-radius: 4px;
}

/* TESTIMONIALS */
.testimonials-page {
    background: #ffffff;
    color: #333333;
    padding: 10px 40px 50px 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    background: #faf5fc; /* soft pink-white */
    border: 1px solid #f2e8f7;
    padding: 25px;
    border-radius: 8px;
}

.testimonial .quote {
    font-size: 18px;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 10px;
}

.testimonial .author {
    font-size: 14px;
    color: var(--color-magenta);
    font-weight: 600;
}

.testimonials-section .testimonial p {
    color: #444444;
}

.testimonials-section .testimonial-author {
    color: var(--color-magenta);
    font-weight: 600;
    display: block;
    margin-top: 6px;
}

/* HOME PAGE TESTIMONIALS SECTION */
.testimonials-section {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.testimonials-inner {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    color: var(--color-magenta);
    margin-bottom: 25px;
}

.testimonial {
    margin-bottom: 30px;
}

.testimonial p {
    color: #444444;
    margin-bottom: 10px;
}

.testimonial-author {
    color: var(--color-magenta);
    font-weight: 600;
    display: block;
    margin-top: 6px;
}

/* CTA */
.cta-section {
    background: #ffffff;
    padding: 10px 20px;
    text-align: center;
}

.cta-title {
    color: var(--color-magenta);
    font-size: 32px;
}

.cta-text {
    color: #444444;
    margin-bottom: 20px;
}

/* CTA BUTTON */
.gold-button {
    background: var(--color-pink);
    color: #000;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.gold-button:hover {
    background: var(--color-purple);
}

/* HERO SECTION */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    padding: 40px;
    position: relative;
    text-align: center;
}

.hero-title {
    color: var(--color-white);
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-button {
    background: var(--color-pink);
    color: #000;
    padding: 14px 28px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.hero-button:hover {
    background: var(--color-purple);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 300px;
}

.site-wrapper {
    padding-top: 0 !important;
}

/* Contact Page */
.contact-page {
    background: #ffffff;
    color: #333333;
    padding: 50px 30px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-magenta);
    background: #ffffff;
    color: #333333;
    border-radius: 6px;
    font-size: 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 0 6px #f2e8f7;
}

.call-button {
    display: inline-block;
    background: var(--color-magenta);
    color: #000;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
    margin: 20px 0;
    text-decoration: none;
}

.call-button:hover {
    background: var(--color-purple);
}

.booking-note {
    color: #444444;
    font-size: 18px;
    margin-bottom: 10px;
}

.booking-button {
    margin-bottom: 40px;
}

.btn {
    background: var(--color-magenta);
    padding: 14px 24px;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

.hp-field {
    display: none;
}
/* HOW IT WORKS PAGE
--------------------------------------------- */

.how-it-works-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 40px 50px 30px;
}

.how-it-works-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.how-it-works-page .intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

/* Section blocks */
.hiw-section {
    margin-bottom: 50px;
}

.hiw-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #c59d5f; /* your gold accent */
}

.hiw-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.hiw-section ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.hiw-section ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Video wrapper (keeps YouTube responsive) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mini gallery inside the page */
.hiw-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.hiw-gallery img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}
/* BECOME A WEDDING CRASHER PAGE */
.become-crasher-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 40px 50px 30px;
}

.become-crasher-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.become-crasher-page .intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.bc-section {
    margin-bottom: 50px;
}

.bc-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #c59d5f;
}

.bc-section ul {
    margin: 10px 0 20px 20px;
}

.bc-section ul li {
    margin-bottom: 8px;
}
/* WEDDING CRASHERS PAGE */
.wedding-crashers-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 40px 50px 30px;
}

.crasher-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.crasher-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
}

.crasher-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.crasher-about,
.crasher-more {
    line-height: 1.6;
    margin-bottom: 15px;
}



