body {
    background-color: rgb(24, 24, 24);
    background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('./images/logo-white.png');
    background-size: 200px;
}

.hero {
    height: 300px;
    margin-top: -20px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) calc(100% - 50px), rgba(0,0,0,1) 100%), url('images/background-blurred-wide.png');
    background-size: 100% 300px, 100% 300px;
    background-repeat: no-repeat;
    background-position: top center;
}

.header { font-family: "Mr Dafoe", cursive; font-weight: 400; font-style: normal; }
.main { font-family: "Kaushan Script", cursive; font-weight: 400; font-style: normal; }
.details { font-family: "Josefin Slab", serif; font-weight: 600; font-style: normal; }

nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-direction: row;
}

.info {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 204, 255);
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0,0,0,0.3)), url('images/swirl.png');
    padding: 30px;
    width: 90%;
    max-width: 1200px;
    border-radius: 4px;
    border: 3px solid rgb(0, 0, 0);
    transition: all 0.3s ease;
}

.home-container {
    width: 100%;
}

.band-title {
    font-family: "Kaushan Script", cursive;
    font-size: 32px;
    text-align: center;
    color: rgb(50, 50, 50);
    margin-bottom: 30px;
    font-style: italic;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.description-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.band-description {
    font-family: "Josefin Slab", serif;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: rgb(50, 50, 50);
    font-weight: 600;
}

.band-description p {
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.band-description strong {
    color: rgb(150, 100, 200);
}

.images-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    min-height: 300px;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(150, 100, 200, 0.2), rgba(235, 204, 255, 0.3));
    border: 2px solid rgb(150, 100, 200);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(100, 100, 100);
    font-family: "Josefin Slab", serif;
    font-size: 14px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(150, 100, 200, 0.2);
    background: linear-gradient(135deg, rgba(150, 100, 200, 0.3), rgba(235, 204, 255, 0.4));
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.image-placeholder.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.image-placeholder.small {
    grid-column: 2 / 3;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.map-section h3 {
    font-family: "Kaushan Script", cursive;
    font-size: 24px;
    color: rgb(50, 50, 50);
    font-style: italic;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 2px solid rgb(150, 100, 200);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 16px rgba(150, 100, 200, 0.2);
    border-color: rgb(130, 80, 180);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.form-section h2 {
    font-family: "Kaushan Script", cursive;
    font-size: 28px;
    margin-bottom: 20px;
    color: rgb(50, 50, 50);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 12px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 2px;
    font-family: "Josefin Slab", serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(150, 100, 200);
    box-shadow: 0 0 8px rgba(150, 100, 200, 0.3);
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(150, 100, 200);
}

.form-group label {
    font-family: "Josefin Slab", serif;
    font-size: 14px;
    cursor: pointer;
    color: rgb(50, 50, 50);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.form-footer p {
    font-family: "Josefin Slab", serif;
    font-size: 12px;
    color: rgb(80, 80, 80);
}

.submit-btn {
    padding: 10px 25px;
    background-color: rgb(150, 100, 200);
    border: 2px solid rgb(0, 0, 0);
    border-radius: 2px;
    font-family: "Josefin Slab", serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    color: white;
}

.submit-btn:hover {
    background-color: rgb(130, 80, 180);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-notice {
    font-family: "Kaushan Script", cursive;
    font-size: 16px;
    color: rgb(50, 50, 50);
    line-height: 1.6;
}

.contact-notice p {
    margin: 5px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background-color: white;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 2px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-envelope {
    width: 60px;
    height: 45px;
    margin: 0 auto 10px;
    border: 2px solid rgb(0, 0, 0);
    position: relative;
    background-color: white;
}

.contact-envelope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgb(0, 0, 0);
    clip-path: polygon(0 0, 50% 60%, 100% 0);
}

.contact-card h3 {
    font-family: "Josefin Slab", serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(50, 50, 50);
}

.contact-card .phone {
    font-family: "Josefin Slab", serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgb(80, 80, 80);
}

.contact-card .email {
    font-family: "Josefin Slab", serif;
    font-size: 12px;
    color: rgb(100, 100, 100);
}

footer {
    font-weight: bold;
    width: calc(100% - 20px);
    text-align: center;
    margin: 20px auto;
    margin-bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 10px;
    font-size: 20px;
    background-color: rgb(235, 204, 255);
    border-top: 3px solid black;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2)), url('images/foggy-birds.png');
}

footer button {
    background: none;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: transform 0.5s;
    width: 50px;
    height: 50px;
}

footer button img {
    width: 50px;
    height: 50px;
}

footer button {
    animation: subtle-pulse 0.8s ease-in-out infinite;
}

footer button:hover {
    transform: scale(1.1);
    animation: none;
}

footer button:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

header {
    width: calc(100% - 20px);
    text-align: center;
    margin: 20px auto;
    margin-top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 10px;
    background-color: rgb(235, 204, 255);
    border-bottom: 3px solid black;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2)), url('images/foggy-birds.png');
    position: relative;
}

header h2 {
    font-size: 23px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
}

header a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 180ms ease, color 180ms ease;
    will-change: transform, color;
    padding-top: 10px;
    padding-bottom: 10px;
}

header a:hover {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
    transform: translateY(-2px);
}

header img {
    width: auto;
    height: 60px;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.hamburger-btn img {
    height: 30px;
    width: 30px;
}

header .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

header .logo-link:hover {
    opacity: 0.8;
}

h1 {
    margin-top: -110px;
    color: white;
    text-align: center;
    font-size: 150px;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 100px;
        margin-top: -80px;
    }

    header {
        padding: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }

    header img {
        height: 50px;
    }

    header h2 {
        font-size: 18px;
    }

    header a {
        font-size: 14px;
    }

    header ul {
        gap: 15px;
    }

    footer {
        font-size: 18px;
    }

    .info {
        padding: 25px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 350px;
    }

    .band-title {
        font-size: 28px;
    }

    .map-section h3 {
        font-size: 22px;
    }

    .contact-container {
        gap: 30px;
    }

    .form-section h2 {
        font-size: 24px;
    }

    .contact-notice {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .hero {
        height: 200px;
        background-size: 100% 200px, 100% 200px;
    }

    header a {
        font-size: 12px;
    }

    header img {
        height: 25px;
        margin: 0;
        margin-right: -10px;
    }

    header h2 {
        font-size: 12px;
        margin: 0;
    }

    header ul {
        gap: 10px;
    }

    h1 {
        font-size: 70px;
        margin-top: -60px;
    }

    footer {
        font-size: 14px;
    }

    footer .buttons {
        gap: 100px;
    }

    @keyframes subtle-pulse {
    0%, 100% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(0.85);
    }
    }

    footer button:hover {
    transform: scale(0.9);
    animation: none;
}

    footer .facebook {
        margin-right: -10px;
    }

    .info {
        padding: 20px;
    }

    .band-title {
        font-size: 22px;
    }

    .band-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        min-height: auto;
    }

    .image-placeholder.large {
        grid-column: 1 / 2;
        grid-row: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .image-placeholder.small {
        grid-column: 1 / 2;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .map-container {
        height: 300px;
    }

    .map-section h3 {
        font-size: 18px;
    }

    .content-wrapper {
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-notice {
        font-size: 13px;
    }

    .contact-card {
        padding: 12px;
    }

    .contact-card h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 410px) {
    .hero {
        height: 150px;
        background-size: 100% 150px, 100% 150px;
    }

    header {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    header img {
        width: 60px;
        height: auto;
    }

    header div {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    header h2 {
        font-size: 17px;
    }

    .hamburger-btn {
        display: flex;
        order: 2;
    }

    nav {
        position: absolute;
        top: calc(100% - 8px);
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgb(235, 204, 255);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
        border-bottom: 0px solid black;
        background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2)), url('images/foggy-birds.png');
        z-index: 1000;
    }

    nav.open {
        max-height: 500px;
        border-bottom: 3px solid black;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav li {
        border-bottom: 2px solid rgba(0, 0, 0, 0.35);
        width: 100%;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px !important;
        text-align: left;
        font-size: 15px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
        font-size: 12px;
    }

    footer .buttons {
        gap: 20px;
        display: flex;
        justify-content: center;
    }

    footer button {
        width: 40px;
        height: 40px;
    }

    footer button img {
        width: 40px;
        height: 40px;
    }

    footer div {
        width: 100%;
    }

    footer p {
        margin: 5px 0;
        font-size: 11px;
    }

    h1 {
        font-size: 50px;
        margin-top: -50px;
    }

    .info {
        padding: 15px;
        width: 95%;
    }

    .band-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .band-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .band-description p {
        margin-bottom: 10px;
    }

    .images-grid {
        gap: 10px;
    }

    .image-placeholder {
        font-size: 12px;
        border: 1px solid rgb(150, 100, 200);
    }

    .map-container {
        height: 250px;
    }

    .map-section h3 {
        font-size: 16px;
    }

    .content-wrapper {
        gap: 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 12px;
        padding: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .form-footer p {
        font-size: 11px;
        margin: 0;
    }

    .submit-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }

    .contact-notice {
        font-size: 12px;
    }

    .contact-notice p {
        margin: 3px 0;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-card {
        padding: 10px;
    }

    .contact-envelope {
        width: 50px;
        height: 40px;
    }

    .contact-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .contact-card .phone {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .contact-card .email {
        font-size: 11px;
    }
}

@media screen and (min-width: 1025px) {
    .hero {
        background-image: linear-gradient(to bottom, rgba(0,0,0,0) calc(100% - 50px), rgba(0,0,0,1) 100%), url('images/background-blurred-ultrawide.png');
    }
}
