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

:root {
    --font-primary: 'Helvetica W01 Bold', 'Helvetica W02 Bold', 'DIN Next W01 Light', 'Heebo Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --color-primary: #7D8D68;
    --color-primary-hover: #FFFFFF;
    --color-primary-dark: #6B7A58;
    --color-secondary: #6c757d;
    --color-text: #333;
    --color-text-light: #555;
    --color-background: #fff;
    --color-background-alt: #f8f9fa;
    --color-border: #ddd;
    --color-success: #28a745;
    --color-error: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-image: url('assets/images/paper-texture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(1px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    width: 314px;
    height: 63px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.03em;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.nav-link:focus {
    color: var(--color-primary);
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7D8D68;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image {
    width: 100%;
    max-width: 765px;
    height: 344px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    filter: brightness(1.02) contrast(1.05);
    background-blend-mode: multiply;
}

.hero-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05) contrast(1.1) blur(0.5px);
    background-blend-mode: multiply;
}

/* Sections */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}

.section + .section {
    border-top: 1px solid var(--color-border);
}

.section-dark {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 141, 104, 0.1), transparent);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 200;
    text-transform: lowercase;
    margin-bottom: 3rem;
    color: var(--color-text);
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #7D8D68;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.divider-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background-color: var(--color-primary);
}

.divider-icon {
    padding: 0 20px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .section-divider {
        padding: 30px 0;
    }
    
    .divider-line {
        max-width: 60px;
    }
    
    .divider-icon {
        padding: 0 15px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-divider {
        padding: 20px 0;
    }
    
    .divider-line {
        max-width: 40px;
    }
    
    .divider-icon {
        padding: 0 10px;
        font-size: 1rem;
    }
}

/* Sobre Section */
.sobre-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-logo {
    width: 439px;
    margin-bottom: 2rem;
}

.sobre-text {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light);
    text-align: left;
    max-width: 65ch;
    margin: 0 auto;
    font-weight: 400;
}

/* Discografia Section */
.discografia-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.discografia-title {
    width: 375px;
    margin-bottom: 2rem;
}

.discografia-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.cd-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.cd-cover:hover {
    transform: scale(1.05);
}

/* Agenda Section */
.agenda-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.agenda-title {
    width: 313px;
    margin-bottom: 2rem;
}

.agenda-event {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #333;
}

/* Galeria Section */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 3rem;
    align-items: start;
}

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

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

.galeria-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.galeria-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.galeria-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.galeria-item:hover::before {
    opacity: 1;
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gallery-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.gallery-slides .slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-slides .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev:focus,
.gallery-next:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Slider responsive styles */
@media (max-width: 768px) {
    .gallery-slider {
        margin-top: 2rem;
    }
    
    .gallery-slides {
        aspect-ratio: 4 / 3;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-slides {
        aspect-ratio: 1 / 1;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
}

/* Form field error styling */
.field-error {
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    text-align: left;
    animation: fadeIn 0.3s ease;
}

/* Contactos Section */
.contactos-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contactos-title {
    width: 313px;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #7D8D68;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #6B7A58;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: none;
    border-bottom: 2px solid rgba(125, 141, 104, 0.3);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-text);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: transparent;
    border-bottom-color: var(--color-primary);
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contact-form input.error,
.contact-form textarea.error {
    background: transparent;
    border-bottom-color: #dc3545;
}

.contact-form .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    text-align: left;
}

.contact-form button[type="submit"] {
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background: var(--color-primary-hover);
    color: #7D8D68;
    transform: translateY(-2px);
}

.success-message {
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.contact-form .error-message {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--color-primary-hover);
    color: #7D8D68;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6B7A58 0%, #5A6B48 100%);
    color: white;
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.social-link img {
    width: 30px;
    height: 30px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
/* Tablet Landscape - 980px breakpoint */
@media (max-width: 980px) {
    .nav-menu {
        gap: 1.25rem;
    }
    
    .section {
        padding: clamp(2.5rem, 6vw, 5rem) 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .galeria-item {
        height: 220px;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .sobre-text {
        max-width: 60ch;
    }
    
    .container {
        padding: 0 clamp(1rem, 3.5vw, 1.5rem);
    }
    
    .nav-container {
        padding: 1rem clamp(1rem, 3vw, 1.5rem);
    }
}

/* Tablet Portrait - 768px breakpoint */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .hero {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .container {
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }

    .nav-container {
        padding: 1rem clamp(1rem, 3vw, 1.5rem);
    }

    .sobre-content,
    .discografia-content,
    .agenda-content,
    .contactos-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .sobre-text,
    .discografia-text {
        font-size: 0.95rem;
    }

    .cd-cover {
        width: clamp(200px, 50vw, 250px);
        height: clamp(200px, 50vw, 250px);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    .hero-image {
        border-radius: var(--border-radius);
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Skip navigation for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus indicators */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #5A7048;
        --color-text: #000000;
        --color-background: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

.section:nth-child(even) {
    animation: slideInLeft 0.8s ease-out;
}

.section:nth-child(odd) {
    animation: slideInRight 0.8s ease-out;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Lightbox for gallery */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.5s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-close:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hamburger,
    .btn:not(.btn-print) {
        display: none;
    }
    
    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Social Icons Bar */
.social-icons-bar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-icons-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icons-bar a:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-icons-bar a:focus {
    outline: 2px solid #7D8D68;
    outline-offset: 2px;
}

.social-icons-bar svg {
    width: 24px;
    height: 24px;
}

.social-icons-bar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Individual social platform hover effects */
.social-icons-bar a:nth-child(1):hover {
    background: #1877F2; /* Facebook blue */
}

.social-icons-bar a:nth-child(1):hover svg {
    fill: white;
}

.social-icons-bar a:nth-child(2):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); /* Instagram gradient */
}

.social-icons-bar a:nth-child(2):hover svg {
    fill: white;
}

.social-icons-bar a:nth-child(3):hover {
    background: #FF0000; /* YouTube red */
}

.social-icons-bar a:nth-child(3):hover svg {
    fill: white;
}

.social-icons-bar a:nth-child(4):hover {
    background: #1DA0C3; /* Bandcamp teal */
}

.social-icons-bar a:nth-child(4):hover svg {
    fill: white;
}

/* Responsive for gallery slider */
@media (max-width: 768px) {
    .social-icons-bar {
        right: 15px;
        gap: 10px;
    }

    .social-icons-bar a {
        width: 40px;
        height: 40px;
    }

    .social-icons-bar svg {
        width: 18px;
        height: 18px;
    }

    .gallery-slider .slide .galeria-item {
        height: 300px;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}
