/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --color-card-text: #ffffff;
    --color-01: #F230AE;
    --color-02: #6038F2;
    --color-03: #F2E530;
    --color-04: #F2921D;
    --color-05: #F24B0F;
    --color-brand: var(--color-01);
    --color-support: var(--color-02);
}

body, html {
    font-family: "Quicksand", Helvetica, sans-serif;
    font-weight: normal;
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

strong, b { font-weight: 700; }

@media (min-width: 768px) {
    body, html { font-size: 24px; }
}

/* === Background Canvas === */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, #3b0a5e, #ff6600);
}

/* === Typography === */
h1, h2 {
    text-align: center;
    font-family: "DM Serif Text", serif;
}

h1 { font-size: 1.8rem; }
h1 small { display: block; font-size: 0.5em; line-height: 1.2; }

h2 { font-size: 1.2rem; line-height: 0.8; }
h2 small { display: block; margin-bottom: 0.5em; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
}

/* === Layout === */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .wrapper { padding: 0 25px; }
}

.text-center { text-align: center; }

.text {
    max-width: 650px;
    margin: 0 auto;
}

img {
    display: block;
    max-width: 100%;
}

/* === Cards === */
.card, .header-card {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
    background-blend-mode: overlay;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: auto;
    height: auto;
}

.card {
    padding: 25px;
    margin: 60px 0;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .card { padding: 50px; margin: 100px 0; }
}

/* === Grid Layout === */
.grid {
    display: grid;
    gap: 20px;
}

.grid .card {
    margin: 0;
}

@media (min-width: 768px) {
    .grid { gap: 30px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid .card { margin: 0; }
}

/* === Links in cards === */
.card a, .header-card a {
    color: var(--color-card-text);
    transition: color 0.2s ease;
}

.card a:hover, .header-card a:hover {
    color: var(--color-01);
    text-decoration: none;
}

/* === Header === */
.header-card {
    padding: 10px 15px;
    margin: 0 0 25px;
    border-radius: 0 0 20px 20px;
}

.header-content {
    display: flex;
    flex-direction: column;
}

.header-title { margin-bottom: 10px; }

.header-title h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.header-title h1 small { font-size: 0.6em; }

.header-title a {
    text-decoration: none;
    color: inherit;
}

.where {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 15px;
}

.where li a {
    padding: 4px 6px;
    display: inline-block;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .header-card { padding: 15px 25px; }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-title { margin-bottom: 0; }

    .header-title h1 {
        font-size: 1.8rem;
        text-align: left;
    }

    .where { justify-content: flex-end; margin: 0; }
}

/* === Footer === */
.footer-card {
    padding: 20px 15px;
    margin: 0 0 25px;
    border-radius: 20px;
    text-align: center;
}

.footer-card a {
    color: var(--color-card-text);
    transition: color 0.2s ease;
}

.footer-card a:hover {
    color: var(--color-01);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}

.social-links a:hover { opacity: 0.7; }

.social-links .social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links .social-icon svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .footer-card { padding: 20px 25px; }
}

/* === Buttons === */
.btn {
    display: inline-block;
    background-color: var(--color-01);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

a.btn:hover { text-decoration: none; color: white; }

.btn:hover, .btn:active {
    background-color: #d3129a;
    filter: brightness(0.9);
    color: white;
}

@media (min-width: 768px) {
    .btn { padding: 10px 20px; font-size: 1rem; }
}

/* === Responsive Media (16:9) === */
.responsive-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-media iframe,
.responsive-media embed,
.responsive-media object,
.responsive-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === Newsletter === */
.newsletter-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form label {
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.newsletter-form input[type="checkbox"] + label {
    margin-left: 0;
    font-size: 0.625rem;
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form .btn { width: 100%; }

/* === Music === */
.music-card { gap: 20px; }

.music-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .music-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (min-width: 1024px) {
    .music-grid { grid-template-columns: repeat(3, 1fr); }
}

.music-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-track-title {
    margin: 0;
    font-size: 1rem;
}

.music-track-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.music-track audio {
    width: 100%;
    display: block;
}

/* === For Sale Page === */
.modular-showcase {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.modular-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.modular-image {
    width: 100%;
    height: auto;
    display: block;
}

.modular-info { margin-top: 5px; }
.modular-info p { margin-bottom: 15px; }

@media (min-width: 768px) {
    .modular-image-container {
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .modular-info {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* === Sint Case Page === */
.sint-case-container { max-width: 800px; margin: 0 auto; }
.sint-case-container h3 { text-align: center; font-family: "DM Serif Text", serif; }

.instagram-embed-container {
    max-width: 540px;
    margin: 1.5rem auto;
}

.youtube-embed {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin: 1.5rem 0;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
