@font-face {
    font-family: 'Broadsheet';
    src: url('fonts/BroadsheetRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'P22Typewriter';
    src: url('fonts/P22TypewriterRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

hr.solid {
  border-top: 3px solid #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    color: #383231;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    padding: 30px 20px 20px;
    background-color: white;
}

.header h1 {
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    font-family: 'P22Typewriter', sans-serif;
    text-decoration: none;
    color: #383231;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: #bb6442;
}

/* SECTIONS */
.section {
    min-height: 100vh;
    padding: 100px 20px;
    scroll-margin-top: 100px;
    max-width: 1100px;
    margin: auto;
}

/* HERO HOMEPAGE */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('hero_bg.png');
    background-size: contain;
}

.hero h2 {
    font-family: 'Broadsheet', sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    background-color: white;
    margin-bottom: 100px;
    border-radius: 10px;
    width: 90%;
}

#events_button {
    font-family: 'P22Typewriter', sans-serif;
    font-size: 20px;
    margin-top: 50px;
    width: 350px;
    padding: 30px;
    background-color: #383231;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#events_button:hover {
    background-color: #b69b8c;
}

/* HERO EVENTS PAGE */
.events-hero {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    text-align: center;
}

.events-hero h2 {
    font-family: 'Broadsheet', sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    background-color: white;
    margin-bottom: 100px;
}

/* ABOUT */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.about-text {
    color: white;
    background-image: linear-gradient(to bottom, #bb6442, #cb704c, #db7c57, #eb8862, #fb956d);
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 15px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Broadsheet', serif;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'P22Typewriter', serif;
}

.socials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.socials img {
    width: 40px;
    filter: invert(44%) sepia(37%) saturate(777%) hue-rotate(332deg) brightness(95%) contrast(90%);
    transition: opacity 0.3s ease;
}

.socials a {
    text-decoration: none;
}

.socials img:hover {
    opacity: 0.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    width: 100%;
}

.gallery a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 5;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.04);
}

/* Tablets */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery a {
        aspect-ratio: 3 / 4;
    }
}

/* Phones */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery a {
        aspect-ratio: 4 / 5;
    }

    .gallery img:hover {
        transform: none;
    }
}

/* OTHER SECTIONS */
#music,
#gallery,
#contact {
    text-align: center;
}

#music h1,
#gallery h1,
#contact h1 {
    font-family: 'Broadsheet', serif;
    font-size: 50px;
    margin-bottom: 20px;
}

/* CONTACT FORM */
#contact p {
    font-family: 'P22Typewriter', serif;
    font-size: 18px;
}
.contact-form {
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(43, 36, 34, 0.06);
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.contact-form label {
    font-family: 'P22Typewriter', serif;
    font-size: 14px;
    margin-bottom: 6px;
    color: #3b2f2d;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    font-family: 'P22Typewriter', serif;
    font-size: 16px;
    padding: 10px 12px;
    border: 1px solid #e6ded9;
    border-radius: 4px;
    background: #fff;
    color: #2b2422;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9a6a55;
    box-shadow: 0 0 0 3px rgba(154, 106, 85, 0.08);
}

.contact-form .form-actions {
    display: flex;
    justify-content: flex-end;
}

.contact-form button {
    background: #bb6442;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #7f5544;
}

#footer {
    text-align: center;
    background-color: #f8f8f8;
    font-family: 'P22Typewriter', serif;
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 70px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form .form-actions {
        justify-content: center;
    }
}

/* status messages */
.contact-status {
    font-size: 15px;
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 4px;
    display: none;
}

.contact-status.success {
    display: block;
    background: #e9f7ee;
    color: #1f6f3a;
    border: 1px solid #cfead6;
}

.contact-status.error {
    display: block;
    background: #fff2f2;
    color: #7a2121;
    border: 1px solid #f2cfcf;
}

.contact-form button.disabled,
.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Honeypot helper in stylesheet (in case inline hide is removed) */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 40px;
    }
}