/* ========================================
   THE WEDDING GROOVE BAND
   Retro/Vintage Wedding Band Website
   ======================================== */

/* CSS Variables */
:root {
    /* Color Palette - Warm Retro Tones */
    --gold: #fbc908;
    --gold-light: #e8d48a;
    --gold-dark: #9a7b1a;
    --burgundy: #722f37;
    --burgundy-dark: #4a1f24;
    --cream: #faf6f0;
    --cream-dark: #f0e6d8;
    --sepia: #704214;
    --brown: #3d2914;
    --brown-light: #5a3d1f;
    --ivory: #fffff0;
    --charcoal: #2d2d2d;
    
    /* Typography */
    --font-display: 'Playfair Display', Poppins, sans-serif;
    --font-body: 'Crimson Text', Poppins, sans-serif;
    --font-accent: 'Bebas Neue', Impact, sans-serif;
    --font-typewriter: 'Special Elite', 'Courier New', monospace;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar.scrolled .logo-img {
        height: 45px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 2px 2px 0 var(--burgundy);
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(1500%) hue-rotate(350deg) brightness(95%) contrast(95%);
}

.navbar.scrolled .logo-text {
    color: var(--burgundy);
    text-shadow: none;
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--brown);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link.nav-cta {
    background: var(--gold);
    color: var(--brown);
    padding: 12px 25px;
    border-radius: 0;
    border: 2px solid var(--gold);
}

.navbar.scrolled .nav-link.nav-cta {
    color: var(--brown);
}

.nav-link.nav-cta:hover {
    background: transparent;
    color: var(--gold);
}

.navbar.scrolled .nav-link.nav-cta:hover {
    color: var(--gold);
}

.nav-link.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ivory);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--brown);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: sepia(20%) contrast(1.1) brightness(0.9);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.4), rgba(61, 41, 20, 0.5));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(45, 45, 45, 0.4) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(45, 45, 45, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--ivory);
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    font-family: var(--font-typewriter);
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1;
    letter-spacing: 8px;
    margin-bottom: 25px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--gold);
    font-size: 1.2em;
    text-shadow: 3px 3px 0 var(--burgundy-dark);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-divider {
    margin: 30px 0;
}

.divider-ornament {
    font-size: 2rem;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Social Icons */
.hero-social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-social a:hover {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .hero-social {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
        z-index: 10;
    }
    
    .hero-social a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .scroll-down {
        display: none;
    }
    
    .hero-buttons {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-social {
        gap: 10px;
    }
    
    .hero-social a {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        margin-bottom: 90px;
    }
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-light);
    font-family: var(--font-typewriter);
    font-size: 0.8rem;
    letter-spacing: 3px;
    z-index: 1;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-top: 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 35px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ivory);
}

.btn-secondary:hover {
    background: var(--ivory);
    color: var(--brown);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--brown);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-header.light {
    color: var(--cream);
}

.section-header.light .section-title {
    color: var(--cream);
}

.section-header.light .section-number {
    color: var(--gold-light);
}

.section-header.gallery-header {
    margin-top: 80px;
}

.section-number {
    font-family: var(--font-typewriter);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 5px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--brown);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
}

/* Circular Image Frame */
.about-image.circular {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--gold);
    box-shadow: 
        0 0 0 4px var(--burgundy),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.circle-frame::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.circle-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(114, 47, 55, 0.2);
    pointer-events: none;
}

.circle-frame img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(10%) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.circle-frame:hover img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1.1);
}

.about-image.circular .image-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 25px;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--burgundy);
    color: var(--gold-light);
    font-family: var(--font-typewriter);
    font-size: 0.85rem;
    padding: 15px 25px;
    letter-spacing: 2px;
    box-shadow: 5px 5px 0 var(--gold);
}

.about-text .lead-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--sepia);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--brown-light);
}

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.highlight-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--gold);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--brown-light);
    font-size: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ========================================
   NAČIN RADA - HOW WE WORK
   ======================================== */
.how-we-work {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.work-intro .lead-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 20px;
}

.work-intro p {
    font-size: 1.1rem;
    color: var(--cream-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.work-intro strong {
    color: var(--gold);
}

.work-note {
    background: rgba(201, 162, 39, 0.15);
    padding: 20px 25px;
    border-left: 4px solid var(--gold);
    text-align: left;
    margin-top: 25px;
    border-radius: 0 8px 8px 0;
}

.work-note i {
    color: var(--gold);
    margin-right: 10px;
}

/* Band Members Section */
.band-section {
    margin-bottom: 60px;
}

.band-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 40px;
}

.band-title i {
    color: var(--gold);
    margin-right: 15px;
}

.member-count {
    font-weight: 400;
    color: var(--gold-light);
    font-size: 0.9em;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.member-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.member-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.member-icon i {
    font-size: 1.8rem;
    color: var(--brown);
}

.member-icon svg {
    color: var(--brown);
}

.member-card span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    font-weight: 500;
}

/* Duration Section */
.duration-section {
    margin-bottom: 50px;
}

.duration-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 40px;
}

.duration-title i {
    color: var(--gold);
    margin-right: 15px;
}

.duration-info {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.duration-main {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.3);
}

.duration-hours {
    display: block;
    font-family: var(--font-accent);
    font-size: 4rem;
    color: var(--brown);
    line-height: 1;
}

.duration-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--brown);
    font-weight: 600;
}

.duration-breaks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.break-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.break-item i {
    font-size: 1.8rem;
    color: var(--gold);
    width: 40px;
}

.break-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.break-item span {
    color: var(--gold-light);
    font-size: 0.95rem;
}

/* CTA Section Inline */
.cta-section-inline {
    text-align: center;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .band-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .member-card {
        padding: 20px 15px;
    }
    
    .member-icon {
        width: 55px;
        height: 55px;
    }
    
    .member-icon i {
        font-size: 1.4rem;
    }
    
    .duration-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .duration-main {
        padding: 30px 50px;
    }
    
    .duration-hours {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--cream-dark);
}

/* Videos 3x3 Grid */
.videos-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.video-item {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--charcoal);
    border: 4px solid var(--brown);
    box-shadow: 6px 6px 0 var(--gold);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 var(--gold);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Photos Grid - Uniform Heights */
.photos-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: block;
    aspect-ratio: 4/3;
}

.masonry-item:hover {
    transform: scale(1.02);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(10%);
    transition: all 0.4s ease;
}

.masonry-item:hover img {
    filter: sepia(0%);
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 15px;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
}

@media (max-width: 900px) {
    .videos-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photos-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .videos-grid-3x3 {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .photos-masonry {
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.video-section {
    text-align: center;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 30px;
}

.video-title i {
    color: var(--gold);
    margin-right: 10px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: var(--charcoal);
    border: 5px solid var(--brown);
    box-shadow: 10px 10px 0 var(--gold);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--brown));
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--burgundy), var(--brown-light));
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: rgba(201, 162, 39, 0.2);
}

.play-button i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-left: 5px;
}

.video-placeholder span {
    font-family: var(--font-typewriter);
    color: var(--cream);
    letter-spacing: 2px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   SOCIAL SECTION
   ======================================== */
.social-section {
    background: linear-gradient(135deg, var(--brown), var(--charcoal));
}

/* Social Links Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-link.instagram i { color: #E1306C; }
.social-link.tiktok i { color: #00f2ea; }
.social-link.youtube i { color: #FF0000; }
.social-link.facebook i { color: #1877F2; }

.social-link span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 5px;
}

.social-link small {
    color: var(--gold-light);
    font-family: var(--font-typewriter);
    font-size: 0.85rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 20px 80px;
    align-items: start;
}

/* Desktop: intro i info na levoj strani, forma na desnoj */
.contact-intro {
    grid-column: 1;
    grid-row: 1;
}

.contact-info {
    grid-column: 1;
    grid-row: 2;
}

.contact-form {
    grid-column: 2;
    grid-row: 1 / 3;
}

.contact-intro h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 20px;
}

.contact-intro > p {
    color: var(--brown-light);
    font-size: 1.1rem;
}

/* Način rada - kompaktna verzija u kontakt sekciji */
.how-we-work-compact {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.how-we-work-compact h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 15px;
}

.how-we-work-compact h4 i {
    color: var(--gold);
    margin-right: 10px;
}

.how-we-work-compact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.how-we-work-compact li {
    padding: 8px 0;
    color: var(--brown-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.how-we-work-compact li:last-child {
    border-bottom: none;
}

.how-we-work-compact li strong {
    color: var(--brown);
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--brown);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item span {
    color: var(--brown-light);
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Decorative Stamp */
.decorative-stamp {
    margin-top: 50px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    opacity: 0.8;
}

.stamp-text {
    font-family: var(--font-typewriter);
    font-size: 0.9rem;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Logo */
.contact-logo {
    margin-top: 40px;
}

.contact-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stamp-year {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--burgundy);
    letter-spacing: 3px;
}

/* Contact Form */
.contact-form {
    background: var(--cream-dark);
    padding: 50px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group select {
    width: 100%;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23704214' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--brown-light);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success Message */
.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--cream-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: flex;
}

.form-success i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--brown-light);
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: var(--cream);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 300px;
}

.footer-nav h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--brown);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.made-with {
    margin-top: 10px;
}

.made-with i {
    color: var(--burgundy);
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ========================================
   REPERTOAR SECTION
   ======================================== */
.repertoar-section {
    background: var(--cream);
}

.repertoar-controls {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brown-light);
    font-size: 0.9rem;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--cream-dark);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.search-box input::placeholder {
    color: var(--brown-light);
    opacity: 0.7;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sort-controls label {
    font-family: var(--font-display);
    color: var(--brown);
    font-weight: 500;
}

.sort-controls select {
    padding: 12px 40px 12px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--cream-dark);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23704214' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: var(--transition);
}

.sort-controls select:focus {
    outline: none;
    border-color: var(--gold);
}

.sort-direction-btn {
    width: 45px;
    height: 45px;
    background: var(--burgundy);
    border: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.sort-direction-btn:hover {
    background: var(--gold);
    color: var(--brown);
}

.repertoar-stats {
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-typewriter);
    color: var(--brown-light);
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.export-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--burgundy);
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.export-pdf-btn:hover {
    background: var(--gold);
    color: var(--brown);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.songs-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 8px;
    background: var(--cream-dark);
    padding: 15px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.song-item {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--cream);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.song-item:hover {
    border-left-color: var(--gold);
    background: white;
}

.song-item-genre {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    color: var(--gold-light);
    font-size: 0.75rem;
}

.song-item-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--brown);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-item-artist {
    font-size: 0.85rem;
    color: var(--brown-light);
    white-space: nowrap;
}

.song-card {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 25px;
    position: relative;
    transition: var(--transition);
}

.song-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.song-genre-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--burgundy);
    color: var(--gold-light);
    padding: 6px 14px;
    font-family: var(--font-typewriter);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.song-genre-badge i {
    font-size: 0.85rem;
}

.song-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 10px;
    line-height: 1.3;
}

.song-artist {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-light);
    font-size: 0.95rem;
}

.song-artist i {
    color: var(--gold);
    font-size: 0.85rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--brown);
    font-family: var(--font-display);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--gold);
    background: var(--cream);
}

.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown);
    font-weight: 600;
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-ellipsis {
    padding: 0 8px;
    color: var(--brown-light);
}

.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--brown-light);
    gap: 15px;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: var(--gold);
}

.no-songs-message {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--brown-light);
    gap: 15px;
}

.no-songs-message i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.5;
}

.no-songs-message p {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

/* ========================================
   ADMIN PAGE STYLES
   ======================================== */
.admin-page {
    background: var(--cream);
}

.admin-main {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

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

.admin-header h1 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.admin-header h1 i {
    color: var(--gold);
    margin-right: 15px;
}

.admin-header p {
    color: var(--brown-light);
    font-size: 1.1rem;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-actions .btn-save-order {
    font-weight: 600;
    padding: 12px 24px;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.25);
}

.context-menu {
    display: none;
    position: fixed;
    z-index: 10000;
    min-width: 220px;
    background: var(--cream);
    border: 1px solid rgba(114, 47, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
}

.context-menu.show {
    display: block;
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    color: var(--brown);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.context-menu-item:hover {
    background: rgba(201, 162, 39, 0.15);
}

.context-menu-item i {
    color: var(--gold);
    width: 18px;
}

.admin-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    color: var(--brown-light);
}

.filter-group select {
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--cream-dark);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    cursor: pointer;
}

.admin-stats {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--brown-light);
    font-family: var(--font-typewriter);
    letter-spacing: 1px;
}

.admin-search {
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.admin-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brown-light);
    font-size: 0.85rem;
}

.admin-search input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--cream-dark);
    border: 2px solid rgba(114, 47, 55, 0.2);
    color: var(--charcoal);
    transition: var(--transition);
}

.admin-search input:focus {
    outline: none;
    border-color: var(--gold);
}

.admin-table-wrapper {
    margin-bottom: 0;
}

.admin-table-container {
    background: var(--cream-dark);
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow-x: auto;
}

.admin-save-order-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.admin-save-order-footer .btn {
    min-width: 220px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--burgundy);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-table th:hover {
    background: var(--burgundy-dark);
}

.admin-table th i {
    margin-left: 8px;
    font-size: 0.85rem;
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(114, 47, 55, 0.1);
    color: var(--brown);
}

.admin-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.05);
}

.admin-table tbody tr.selected {
    background: rgba(201, 162, 39, 0.15);
    border-left: 3px solid var(--gold);
}

.admin-table tbody tr.selected:hover {
    background: rgba(201, 162, 39, 0.2);
}

.admin-table .loading-cell,
.admin-table .empty-cell {
    text-align: center;
    padding: 50px 20px;
    color: var(--brown-light);
}

.admin-table .loading-cell i,
.admin-table .empty-cell i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.genre-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-family: var(--font-typewriter);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.genre-badge.genre-narodna { background: #fce7f3; color: #db2777; }
.genre-badge.genre-noviteti { background: #e0e7ff; color: #4f46e5; }
.genre-badge.genre-domaci-pop-rock { background: #fee2e2; color: #dc2626; }
.genre-badge.genre-strana { background: #cffafe; color: #0891b2; }
.genre-badge.genre-dance { background: #fef3c7; color: #d97706; }
.genre-badge.genre-ostalo { background: #f3f4f6; color: #4b5563; }
.genre-badge:not(.genre-narodna):not(.genre-noviteti):not(.genre-domaci-pop-rock):not(.genre-strana):not(.genre-dance):not(.genre-ostalo) { background: #f3f4f6; color: #4b5563; }

.actions-cell {
    white-space: nowrap;
}

.action-btn {
    width: 38px;
    height: 38px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
}

.action-btn.edit-btn {
    background: var(--gold);
    color: var(--brown);
}

.action-btn.edit-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.action-btn.delete-btn {
    background: #fee2e2;
    color: #dc2626;
}

.action-btn.delete-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.drag-handle-col {
    width: 40px;
}

.order-col {
    width: 60px;
}

.drag-handle {
    cursor: grab;
    color: var(--brown-light);
    text-align: center;
}

.drag-handle:active {
    cursor: grabbing;
}

.drag-handle i {
    font-size: 1rem;
}

.admin-table tbody tr[draggable="true"] {
    transition: background 0.2s ease, opacity 0.2s ease;
}

.admin-table tbody tr.dragging {
    opacity: 0.5;
    background: var(--gold-light) !important;
}

.admin-table tbody tr.drag-over {
    background: rgba(201, 162, 39, 0.2);
    border-top: 2px solid var(--gold);
}

.order-cell {
    font-family: var(--font-typewriter);
    font-weight: 600;
    color: var(--gold);
}

.song-name-cell strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
}

.song-name-cell .mobile-text {
    display: block;
    font-size: 0.8rem;
    color: var(--brown-light);
    font-style: italic;
    margin-top: 3px;
}

.visibility-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 0.85rem;
}

.visibility-icon.active {
    background: var(--gold);
    color: var(--brown);
}

.play-count {
    font-family: var(--font-typewriter);
    color: var(--brown-light);
}

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

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

.visibility-row {
    margin-top: 10px;
}

.checkbox-group {
    background: var(--cream);
    padding: 15px;
    border: 1px solid rgba(114, 47, 55, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.checkbox-group small {
    display: block;
    margin-top: 5px;
    color: var(--brown-light);
    font-size: 0.8rem;
    padding-left: 30px;
}

.modal-large {
    max-width: 650px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--cream);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: translateY(0);
}

.modal.modal-small {
    max-width: 400px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(114, 47, 55, 0.1);
    background: var(--cream-dark);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brown-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--burgundy);
    transform: rotate(90deg);
}

.modal-form {
    padding: 30px;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    color: var(--brown-light);
    margin-bottom: 10px;
}

.delete-song-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--burgundy);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(114, 47, 55, 0.1);
}

.btn-danger {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.toast-success {
    border-left-color: #059669;
}

.toast.toast-success i {
    color: #059669;
}

.toast.toast-error {
    border-left-color: #dc2626;
}

.toast.toast-error i {
    color: #dc2626;
}

.toast.toast-info {
    border-left-color: var(--gold);
}

.toast.toast-info i {
    color: var(--gold);
}

.toast i {
    font-size: 1.2rem;
}

.toast span {
    color: var(--brown);
    font-family: var(--font-body);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-content,
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* Mobile redosled: intro, forma, info */
    .contact-intro {
        order: 1;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 3;
    }
    
    .circle-frame {
        width: 350px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlights {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .circle-frame {
        width: 280px;
        height: 280px;
        border-width: 6px;
    }
    
    .circle-frame::before {
        inset: -10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--brown);
        font-size: 1.3rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .decorative-stamp {
        margin: 40px auto 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .card-ribbon {
        font-size: 0.65rem;
        padding: 4px 30px;
        right: -30px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }
    
    .social-link i {
        margin-bottom: 0;
    }
}

/* Repertoar Responsive */
@media (max-width: 768px) {
    .repertoar-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .sort-controls {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .sort-controls label {
        display: none;
    }
    
    .sort-controls select {
        flex: 1;
        max-width: 150px;
    }
    
    .export-pdf-btn span {
        display: none;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .songs-compact-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .song-item {
        grid-template-columns: 25px 1fr;
        gap: 10px;
        padding: 10px 12px;
    }
    
    .song-item-artist {
        grid-column: 2;
        font-size: 0.8rem;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .admin-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-actions {
        width: 100%;
    }
    
    .admin-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .admin-filters {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-search {
        max-width: 100%;
        width: 100%;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group select {
        flex: 1;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .drag-handle-col,
    .drag-handle {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal {
        margin: 10px;
    }
    
    .modal-form {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
