/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    font-family: Georgia, serif;
    background-color: #264d3f;
    color: #f5f1e8;
    line-height: 1.7;
}

/* HERO SECTION */

.hero {
   bakground-color: #264d3f;
   
   background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url('images/hero-castle.jpg');

    background-size: 85%;
    background-position: center center;
    background-repeat: no-repeat;
    
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 500;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    color: #f5f1e8;

    border: 1px solid #c8a96b;

    padding: 0.9rem 1.5rem;

    transition: 0.3s ease;
}

.btn:hover {
    background-color: #c8a96b;
    color: #111111;
}

/* CONTENT SECTIONS */

section {
    padding: 6rem 2rem;
}

.content {
    max-width: 900px;
    margin: auto;
}

/* ABOUT SECTION */

.about {
    background-color: #dfe8f2;
    color: #2a241d;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;

    max-width: 1200px;
    margin: auto;
}

.about-logo img {
    width: 320px;
    max-width: 100%;
}

.about-text {
    max-width: 700px;
}

.about h2 {
    color: #5a4125;
}

/* HEADINGS */

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d6b57a;
}

/* PARAGRAPHS */

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* FEATURED EVENT */

.featured-event {
    background-color: #0f3b2e;
    text-align: center;
    padding: 5rem 2rem;
}

.flyer-frame {
    width: 55%;
    max-width: 650px;
    margin: 2rem auto 0 auto;
}

.flyer-frame img {
    width: 100%;
    display: block;
    margin: 0 auto;

    border-radius: 8px;

    box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

/* EXPERIENCE SECTION */

.experience {
    background-color: #1a1a1a;
    text-align: center;
}

/* FOOTER */

footer {
    padding: 2rem;
    text-align: center;

    background-color: #0a0a0a;
    color: #999999;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        margin: auto;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .flyer-frame {
        width: 90%;
    }
}

/* VENDOR APPLICATION PAGE */

.vendor-page {
    background-color: #0f3b2e;
    color: #f5f1e8;
}

.vendor-application-page {
    min-height: 100vh;
    padding: 3rem 2rem;
}

.vendor-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.vendor-logo img {
    width: 180px;
    max-width: 90%;
    border-radius: 6px;
}

.vendor-form-wrap {
    max-width: 850px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.22);
    padding: 3rem;
    border: 1px solid rgba(200, 169, 107, 0.45);
    border-radius: 10px;
}

.vendor-form-wrap h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    color: #d6b57a;
}

.vendor-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.vendor-form-wrap h2 {
    color: #d6b57a;
    margin-bottom: 1.5rem;
}

.vendor-form-wrap label {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.vendor-form-wrap input,
.vendor-form-wrap textarea {
    width: 100%;
    padding: 1rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}

.vendor-form-wrap textarea {
    resize: vertical;
}

.notice {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 1rem;
    border-left: 4px solid #c8a96b;
    margin-top: 1rem;
}

.vendor-submit {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
    background-color: #c8a96b;
    color: #111111;
    border: none;
    font-family: Georgia, serif;
    font-size: 1rem;
    cursor: pointer;
}

.vendor-info-card {
    max-width: 700px;
    margin: 4rem auto 0 auto;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border-radius: 12px;
}

.vendor-info-card img {
    width: 100%;
    max-height: 420px
    object-fit: cover;
}

.vendor-info-card ul {
    padding-left: 1.2rem;
}

.vendor-info-card li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .vendor-form-wrap {
        padding: 2rem 1.2rem;
    }

    .vendor-form-wrap h1 {
        font-size: 2rem;
    }
}

/* ENTERTAINER & VOLUNTEER PAGE */

.inquiry-page {
    background-color: #24112f;
}

.inquiry-wrap {
    border: 1px solid rgba(214, 181, 122, 0.4);
}

.selection-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input {
    width: auto;
}

.inquiry-card {
    background-color: rgba(0, 0, 0, 0.28);
}

/* DISCOVER MORE PAGE */

.discover-page {
    background-color: #7a5a16;
    color: #f5f1e8;
}

.discover-container {
    min-height: 100vh;
}

.discover-hero {
    text-align: center;
    padding-top: 3rem;
    margin-bottom: -3rem;
}

.discover-hero img {
    width: 70%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: auto;

    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0,0.35);
}

.discover-content {
    max-width: 950px;
    margin: auto;
    padding: 0rem 2rem 4rem;
    text-align: center;
}

.discover-content h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #f3d48d;
    margin-top: 0;
}

.discover-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;

    max-width: 750px;
    margin: -1rem auto 2rem auto;

    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);

    text-align: center;
}

.faq-item h2 {
    color: #f3d48d;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.faq-item p {
    line-height: 1.9;
}

.discover-footer {
    text-align: center;
    padding: 3rem 2rem 5rem;
}

.discover-footer img {
    width: 160px;
    border-radius: 8px;
}

.scroll-divider {
    text-align: center;
    font-size: 1.8rem;
    color: #f3d48d;
    margin-bottom: 6rem;
    letter-spacing: 1rem;
}

.radio-group {
    margin-top: 0.5rem;
    text-align: left;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.success-check {
    font-size: 4rem;
    color: #7bb661;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(123, 182, 97, 0.4);
}

.vendor-form-wrap {
    Text-align: center;
}