@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/* General body styles */
body, button, input, textarea, select, a, label {
    cursor: url('Final Mask Cursor-32.png') 0 0, auto;
}

button:hover,
a:hover,
input:hover,
textarea:hover,
select:hover,
label:hover {
    cursor: url('Final Mask Cursor-32-tilt.png') 0 0, auto;
}

body {
    font-family: 'Kosugi Maru', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: url('Final main background image.jpeg') center/cover fixed no-repeat;
    color: #fff;
    text-shadow: 0 0 2px #000, 0 0 6px #000;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="password"],
textarea {
    background: rgba(255, 165, 0, 0.16);
    border: 1px solid rgba(255, 165, 0, 0.34);
    color: #fff;
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 165, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
    background: rgba(253, 224, 71, 0.18);
    border: 1px solid rgba(253, 224, 71, 0.34);
    color: #fff;
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(253, 224, 71, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.14);
}

select:focus {
    outline: none;
    border-color: rgba(253, 224, 71, 0.65);
    box-shadow: 0 0 0 3px rgba(253, 224, 71, 0.14);
}

/* Header styles */
header {
    background: url('IMG_6396.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 150, 0, 0.22), rgba(255, 120, 0, 0.18));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 1;
    pointer-events: none;
}

/* Crease transition at bottom of header to blend into main */
header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.14) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 3;
    pointer-events: none;
    transform-origin: center top;
    transform: perspective(700px) rotateX(8deg);
    filter: blur(0.5px);
}

header > * {
    position: relative;
    z-index: 2;
}

header .logo-button {
    display: inline-block;
    transform: perspective(700px) rotateX(18deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease, filter 0.3s ease;
    backface-visibility: hidden;
}

header .logo-button:hover {
    transform: perspective(700px) rotateX(0deg);
}

header .logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
    transform: perspective(700px) rotateX(18deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
}

header .logo-button:hover .logo {
    transform: perspective(700px) rotateX(0deg);
}

header h1 {
    margin: 0;
    padding-bottom: 0.5rem;
}

/* Navigation styles */
nav ul {
    padding: 0;
    list-style: none; /* Removes bullet points */
    display: flex; /* Makes navigation items go side-by-side */
    justify-content: center; /* Centers items */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none; /* Removes underline from links */
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffd700; /* Gold color on hover */
}

/* Tilted navigation button effect */
nav ul li a {
    display: inline-block;
    transform: perspective(700px) rotateX(18deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    backface-visibility: hidden;
}

nav ul li a:hover {
    transform: perspective(700px) rotateX(0deg);
    color: #ffd700;
}

/* Main content area */
main {
    padding: 20px;
    max-width: 960px; /* Limits content width */
    margin: auto; /* Centers the main content */
    background: transparent;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    transform-style: preserve-3d;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 150, 0, 0.22), rgba(255, 120, 0, 0.18));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 1;
    pointer-events: none;
    transform-origin: center top;
    transform: perspective(700px) rotateX(-18deg);
    backface-visibility: hidden;
}

/* Ensure main children render above the visor overlay */
main > * {
    position: relative;
    z-index: 3;
}

/* Subtle glass-like texture overlay */
main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    background-image:
        radial-gradient(rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 40%),
        linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
    background-size: 10px 10px, 100% 100%;
    mix-blend-mode: overlay;
    opacity: 0.6;
    filter: blur(0.6px) saturate(1.05);
    transform-origin: center top;
    transform: perspective(700px) rotateX(-18deg);
}

/* Section styles */
section {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

section h1,
section h2,
section h3,
section h4,
section p,
section ul,
section ol,
section dl,
section address {
    margin-left: auto;
    margin-right: auto;
}

.hero {
    text-align: center;
    padding: 60px 40px;
    border-radius: 8px;
    background: url('new-single-artwork.jpg') center 90%/cover no-repeat;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
    padding: 80px 40px;
}

.contact-hero .video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h2,
.contact-hero p {
    color: #fff;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
}

.updates-hero {
    background: url('Updates Background.jpeg') center 80%/cover no-repeat;
    border-radius: 16px;
    padding: 70px 40px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 25px 60px rgba(0,0,0,0.3);
}

.updates-hero h2,
.updates-hero p {
    color: #fff;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
}

.updates-feed {
    background: url('Updates content background.jpeg') center/cover no-repeat;
    border-radius: 20px;
    padding: 55px 35px;
    margin: 30px 0;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 40px rgba(0,0,0,0.18);
}

.updates-feed h3 {
    margin-top: 0;
    font-size: 2rem;
}

.updates-feed p {
    max-width: 760px;
    margin: 16px auto 0;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.shows-hero {
    background: url('Shows Background.jpeg') center bottom/cover no-repeat;
    border-radius: 16px;
    padding: 70px 40px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 25px 60px rgba(0,0,0,0.3);
}

.shows-hero form {
    max-width: 560px;
    margin: 24px auto 0;
    display: grid;
    gap: 16px;
    text-align: center;
}

.shows-hero input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.34);
    background: rgba(255, 165, 0, 0.16);
    color: #fff;
}

.shows-hero button {
    justify-self: center;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shows-hero button:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.music-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    padding: 80px 40px;
}

.music-hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.music-hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.music-hero .hero-content {
    position: relative;
    z-index: 1;
}

.music-hero h2,
.music-hero p {
    color: #fff;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
}

.release-grid-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.release-grid-section h2 {
    margin: 0 0 28px;
    text-align: center;
    font-size: 2.4rem;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.release-card {
    display: grid;
    grid-template-rows: auto minmax(220px, auto);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 18px 50px rgba(0,0,0,0.18);
    background: transparent;
    min-height: 520px;
}

.release-artwork {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.release-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px 28px;
    text-align: center;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.release-card-content h3 {
    margin: 0;
    font-size: 1.35rem;
}

.release-card-content p {
    margin: 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.stream-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.stream-button:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

@media (max-width: 640px) {
    .release-grid-section {
        padding: 28px 16px 40px;
    }

    .release-card {
        aspect-ratio: auto;
    }
}

.sticker-hero {
    background: url('Sticker Preview.jpeg') center/cover no-repeat;
    border-radius: 16px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 40px rgba(0,0,0,0.25);
}

.sticker-hero form {
    max-width: 520px;
    margin: 30px auto 0;
    display: grid;
    gap: 16px;
    text-align: center;
}

.sticker-hero input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.34);
    background: rgba(255, 165, 0, 0.16);
    color: #fff;
}

.sticker-hero button {
    justify-self: center;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticker-hero button:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.latest-music {
    padding: 40px;
    border-radius: 12px;
    background: url('Invisible Thumbs.jpg') center bottom/cover no-repeat;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 15px 40px rgba(0,0,0,0.2);
}

.latest-music h3,
.latest-music p,
.latest-music h4 {
    color: #fff;
}

.latest-music {
    padding: 40px;
    border-radius: 12px;
    background: url('Invisible Thumbs.jpg') center bottom/cover no-repeat;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 15px 40px rgba(0,0,0,0.2);
}

.latest-music h3,
.latest-music p,
.latest-music h4 {
    color: #fff;
}

.draw-section {
    padding: 30px;
    border-radius: 16px;
    background: url('Painting IT.jpeg') center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 15px 40px rgba(0,0,0,0.25);
    color: #fff;
    margin-bottom: 20px;
}

.draw-section h3,
.draw-section p,
.draw-section label,
.draw-section textarea,
.draw-section button,
.draw-section select,
.draw-section input[type="color"] {
    color: #fff;
}

.canvas-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

#drawing-canvas {
    width: 100%;
    max-width: 320px;
    height: auto;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    touch-action: none;
}

.canvas-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.canvas-controls label,
.canvas-controls select,
.canvas-controls input[type="color"] {
    font-size: 0.95rem;
}

#drawing-message {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.34);
    background: rgba(255, 165, 0, 0.16);
    color: #fff;
    resize: vertical;
}

.draw-section button[type="submit"],
.draw-section button[type="button"] {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.draw-section button[type="submit"]:hover,
.draw-section button[type="button"]:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.mailing-list {
    position: relative;
    text-align: center;
    margin: 20px 0;
    padding: 40px 20px;
    border-radius: 20px;
    background: url('https://media.tenor.com/H46cVQLyED0AAAAd/devon-hendryx-fuckingyourgirl.gif') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mailing-list-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.mailing-list h3,
.mailing-list p {
    margin: 0 0 16px;
    color: #fff;
}

.mailing-list p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.about-section {
    position: relative;
    text-align: center;
    margin: 20px 0;
    padding: 40px 20px;
    border-radius: 20px;
    background: url('About page background.JPG') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.about-section h3,
.about-section p {
    margin: 0 0 16px;
    color: #fff;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.artwork {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero button {
    background: rgba(34, 197, 94, 0.18);
    color: #fff;
    padding: 10px 20px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero button:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero.shows-hero button {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero.shows-hero button:hover {
    background: rgba(34, 197, 94, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.listen-button {
    display: inline-block;
    background: rgba(34, 197, 94, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.listen-button:hover {
    background: rgba(34, 197, 94, 0.24);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.mailing-button {
    display: inline-block;
    background: rgba(34, 197, 94, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.mailing-button:hover {
    background: rgba(34, 197, 94, 0.24);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 2rem 0;
    background: url('IMG_6396.jpg') bottom/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    margin-top: 20px;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

/* Crease transition at top of footer to blend from main into footer */
footer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -28px;
    height: 56px;
    background: linear-gradient(0deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.14) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 3;
    pointer-events: none;
    transform-origin: center bottom;
    transform: perspective(700px) rotateX(-8deg);
    filter: blur(0.5px);
}

footer p {
    position: relative;
    z-index: 2;
    margin: 0;
}
