:root {
    --bg-color: #a2531e;
    --accent-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --coffee: #2C1B12;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--coffee) 0%, var(--bg-color) 70%);
    z-index: -1;
    opacity: 0.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
}

.logo-img {
    max-width: 220px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Accessibility Menu */
.accessibility-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.acc-btn {
    background: var(--accent-color);
    color: var(--coffee);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.acc-btn:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.acc-btn:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* High Contrast Mode */
body.high-contrast {
    --bg-color: #000000;
    --accent-color: #ffff00;
    --text-color: #ffffff;
    --card-bg: #000000;
    --coffee: #000000;
}

body.high-contrast .background-overlay {
    display: none;
}

body.high-contrast .link-card {
    background: #000;
    color: #fff;
    border: 2px solid #ff0;
}

body.high-contrast .buy-button {
    background: #ff0;
    color: #000;
}

body.high-contrast .logo-img {
    border-color: #ff0;
}

/* Font Size Classes */
.font-large {
    font-size: 1.2rem;
}

.font-xlarge {
    font-size: 1.4rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

.spotify-embed {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.releases-section {
    width: 100%;
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.release-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
    padding-bottom: 8px;
}

.release-item:hover {
    transform: scale(1.03);
    border-color: var(--accent-color);
}

.release-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 8px;
}

.release-item.future img {
    filter: grayscale(1) contrast(1.1);
    opacity: 0.6;
}

.release-item.future:hover img {
    filter: grayscale(0.4) contrast(1.1);
    opacity: 1;
}

.release-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Shop Section Styles */
.shop-section {
    width: 100%;
    margin-bottom: 35px;
}

.single-shop-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.single-shop-card:hover {
    border-color: var(--accent-color);
}

.product-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.product-gallery img {
    width: 30%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-description {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.buy-button {
    background: var(--accent-color);
    color: var(--coffee);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: black;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.link-card:hover {
    background: rgba(255, 255, 255);
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.spotify:hover {
    color: #1DB954;
}

.instagram:hover {
    color: #E1306C;
}

.tiktok:hover {
    color: #ff0050;
}

.whatsapp:hover {
    color: #25D366;
}

.facebook:hover {
    color: #1877F2;
}

.youtube:hover {
    color: #FF0000;
}

.footer {
    margin-top: auto;
    padding-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile adjustments */
@media (max-width: 380px) {
    .logo {
        font-size: 2rem;
    }
}
