:root {
    --color-stone-dark: #121212;
    --color-stone-light: #e0e0e0;
    --color-ochre: #b38b4d;
    --color-charcoal: #2c2c2c;
    --color-earth: #4a3728;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

body {
    background-color: var(--color-stone-dark);
    color: var(--color-stone-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-stone-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-charcoal);
    border-radius: 4px;
}

/* Background Texture - CSS Simulated Stone */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 1)),
        repeating-conic-gradient(from 0deg, #1a1a1a 0deg 10deg, #1e1e1e 10deg 20deg);
    background-blend-mode: overlay;
    filter: contrast(180%) brightness(40%) grayscale(0.2) opacity(0.8);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

header {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(179, 139, 77, 0.1);
}

#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--color-ochre);
    text-shadow: 0 0 10px rgba(179, 139, 77, 0.3);
}

#main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

#main-nav a {
    text-decoration: none;
    color: var(--color-stone-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

#main-nav a:hover {
    color: var(--color-ochre);
    opacity: 1;
    letter-spacing: 3px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-stone-dark), transparent);
    z-index: 3;
}

.hero-content {
    flex: 1.2;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.8rem;
    color: var(--color-ochre);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    border-left: 2px solid var(--color-ochre);
    padding-left: 1.5rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

#hero-img {
    width: 110%;
    max-width: 600px;
    border-radius: 10px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    filter: sepia(0.2) contrast(1.1) brightness(0.85) drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(179, 139, 77, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.stone-section {
    padding: 10rem 10%;
    position: relative;
    z-index: 5;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,50 Q40,30 50,50 T70,50' stroke='%23b38b4d' stroke-width='1' fill='none' opacity='0.1'/%3E%3Ccircle cx='20' cy='20' r='2' fill='%23b38b4d' opacity='0.1'/%3E%3Cpath d='M80,80 L85,85 M85,80 L80,85' stroke='%23b38b4d' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,60 Q110,40 120,60 Q130,80 110,120 L90,120 Q70,80 80,60 Z' stroke='%23b38b4d' stroke-width='1.5' fill='none' opacity='0.08'/%3E%3Ccircle cx='100' cy='100' r='15' stroke='%23b38b4d' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cline x1='100' y1='85' x2='100' y2='115' stroke='%23b38b4d' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px 150px, 400px 400px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--color-ochre);
    text-align: center;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
}

.bandcamp-link-container {
    text-align: center;
    margin-bottom: 3rem;
}

.bandcamp-profile-link {
    color: var(--color-ochre);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: 1px solid rgba(179, 139, 77, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.bandcamp-profile-link:hover {
    background: rgba(179, 139, 77, 0.1);
    border-color: var(--color-ochre);
    box-shadow: 0 0 20px rgba(179, 139, 77, 0.2);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.album-card {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-card:hover {
    transform: translateY(-15px);
}

.stone-frame {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(179, 139, 77, 0.2);
    border-radius: 10px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.album-link {
    display: block;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-card:hover .album-cover {
    filter: sepia(0) contrast(1) brightness(1);
    transform: scale(1.1);
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1rem 1rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.album-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-ochre);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.clases-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 6rem 4rem;
    border-radius: 30px;
    border: 1px solid rgba(179, 139, 77, 0.15);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.instagram-link {
    display: inline-block;
    margin-top: 3rem;
    color: var(--color-stone-light);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(179, 139, 77, 0.3);
    padding-bottom: 5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.instagram-link:hover {
    opacity: 1;
    color: var(--color-ochre);
    border-bottom-color: var(--color-ochre);
}

.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.2rem 3.5rem;
    background: var(--color-ochre);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(179, 139, 77, 0.3);
}

.cta-button:hover {
    background: #c99e5a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 139, 77, 0.5);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 6rem 10%;
    text-align: center;
    border-top: 1px solid rgba(179, 139, 77, 0.1);
    background: rgba(10, 10, 10, 0.5);
}

.branding-note {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 1.5rem;
    letter-spacing: 1px;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 15rem;
        height: auto;
    }

    .hero-content {
        margin-bottom: 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image-container {
        justify-content: center;
        width: 100%;
    }

    #hero-img {
        width: 100%;
        max-width: 400px;
    }

    .stone-section {
        padding: 6rem 5%;
    }
}