/* CSS Custom Properties for consistent spacing and typography */
:root {
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography Scale */
    --text-xs: clamp(0.75rem, 2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 2.5vw, 1rem);
    --text-base: clamp(1rem, 3vw, 1.125rem);
    --text-lg: clamp(1.125rem, 3.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 4vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 5vw, 2rem);
    --text-3xl: clamp(2rem, 6vw, 2.5rem);
    --text-4xl: clamp(2.5rem, 7vw, 3rem);
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: var(--leading-normal);
    color: #333;
    overflow-x: hidden;
    font-size: var(--text-base);
}

.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem clamp(1rem, 3vw, 2rem);
    max-width: none;
    margin: 0;
    min-height: 60px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Cinzel', 'Times New Roman', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-brand .tagline {
    font-size: 0.7rem;
    color: #666;
    font-weight: 300;
    display: block;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b4513;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
    color: #333;
    padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    margin-top: 60px;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: clamp(500px, 50vw, 700px);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: var(--leading-tight);
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: var(--leading-relaxed);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.stat i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-align: center;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.band-placeholder {
    width: clamp(280px, 35vw, 450px);
    height: clamp(400px, 50vh, 600px);
    max-height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.band-placeholder i {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: #ffd700;
    transition: font-size 0.3s ease;
}

.band-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.band-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .about {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: var(--space-xl) 0;
    }
}

.about h2 {
    text-align: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2xl);
    color: #333;
    line-height: var(--leading-tight);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: #666;
    line-height: var(--leading-relaxed);
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: white;
}

.booking h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    color: #333;
    padding: 0 1rem;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.form-section h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.75rem, 2.5vw, 1rem);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: border-color 0.3s ease;
    background: white;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.checkbox-group {
    display: grid;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.booking-summary h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.summary-total {
    border-top: 2px solid #2c3e50;
    margin-top: 25px;
    padding-top: 25px;
    font-size: 1.2rem;
}

.summary-total span {
    color: #2c3e50;
}

.summary-breakdown {
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #495057;
}

.summary-item:last-child {
    border-bottom: none;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b4513;
    padding: clamp(1rem, 3vw, 1.2rem);
    border: none;
    border-radius: 8px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-height: 48px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-button.disabled,
.submit-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.submit-button.disabled:hover,
.submit-button:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* Tooltip for disabled submit button */
.submit-button.disabled[data-tooltip],
.submit-button:disabled[data-tooltip] {
    position: relative;
}

.submit-button.disabled[data-tooltip]:hover::after,
.submit-button:disabled[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.submit-button.disabled[data-tooltip]:hover::before,
.submit-button:disabled[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    margin-bottom: 2px;
    z-index: 1000;
}

.small-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* Song Requests Modal */
.song-requests-modal {
    background: #f8f9fa;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

.song-requests-content h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.song-requests-list {
    margin-bottom: 1rem;
}

.song-request-item {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    flex-wrap: wrap;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.song-request-item input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.song-request-item input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.remove-song-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.remove-song-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-song-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b4513;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-song-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.song-requests-total {
    background: #e8f2ff;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #667eea;
    margin-top: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.review p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.review cite {
    font-weight: 600;
    color: #333;
}

/* Discount Popup */
.discount-popup {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: transparent;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-popup.show {
    right: 0;
}

.popup-content {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    position: relative;
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.popup-close:hover {
    opacity: 1;
}

.popup-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.popup-content p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.link-container input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 12px;
}

.link-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.link-container button {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.link-container button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    transition: all 0.3s ease;
}

/* Timer animations */
@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes priceUpdate {
    0% {
        transform: scale(1);
        color: inherit;
    }
    50% {
        transform: scale(1.05);
        color: #4CAF50;
    }
    100% {
        transform: scale(1);
        color: inherit;
    }
}

/* Wave animation for "interaktive" text */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.wave-text {
    display: inline-block;
}

.wave-letter {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    color: #ffd700 !important;
    -webkit-text-fill-color: #ffd700 !important;
}

.wave-letter:nth-child(1) { animation-delay: 0s; }
.wave-letter:nth-child(2) { animation-delay: 0.1s; }
.wave-letter:nth-child(3) { animation-delay: 0.2s; }
.wave-letter:nth-child(4) { animation-delay: 0.3s; }
.wave-letter:nth-child(5) { animation-delay: 0.4s; }
.wave-letter:nth-child(6) { animation-delay: 0.5s; }
.wave-letter:nth-child(7) { animation-delay: 0.6s; }
.wave-letter:nth-child(8) { animation-delay: 0.7s; }
.wave-letter:nth-child(9) { animation-delay: 0.8s; }
.wave-letter:nth-child(10) { animation-delay: 0.9s; }
.wave-letter:nth-child(11) { animation-delay: 1s; }

/* Testimonials Carousel */
.testimonials-carousel {
    background: linear-gradient(135deg, #e6ce85 0%, #e39f31 100%);
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    animation: scroll-testimonials 20s linear infinite;
    width: fit-content;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 400px;
    margin-right: 2rem;
    padding: 0 1rem;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonial-content .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-content .stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    font-style: normal;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-5 * (400px + 2rem)));
    }
}

/* Animation continues on hover - removed pause */

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 3rem 0;
    }
    
    .testimonial-item {
        width: 300px;
        margin-right: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        width: 280px;
        margin-right: 1rem;
    }
    
    .testimonial-content {
        padding: 1.25rem;
    }
    
    .testimonial-content .stars i {
        font-size: 1rem;
    }
}

/* Confirmation Page Styles */
.confirmation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
    position: relative;
    overflow: hidden;
}

.confirmation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.confirmation-content {
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.4),
        0 0 0 4px rgba(255, 215, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}



.success-icon i {
    font-size: 3rem;
    color: #8b4513;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(255, 215, 0, 0.4),
            0 0 0 0 rgba(255, 215, 0, 0.7),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 
            0 15px 40px rgba(255, 215, 0, 0.6),
            0 0 0 25px rgba(255, 215, 0, 0),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.confirmation-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
    letter-spacing: 1px;
}

.confirmation-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.highlight-text {
    color: #8b4513;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
}

.confirmation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.confirmation-actions .btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.confirmation-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.confirmation-actions .btn:hover::before {
    left: 100%;
}

.confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    border: 2px solid transparent;
}

.confirmation-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
}

.confirmation-actions .btn-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b4513;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.confirmation-actions .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    color: #6d3710;
}

@media (max-width: 768px) {
    .confirmation-content {
        padding: 3rem 2rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .confirmation-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .confirmation-message {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .highlight-text {
        padding: 0.2rem 0.6rem;
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    padding: 0.5rem;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
/* Mobile First Approach */
@media (max-width: 480px) {
    .nav {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .nav-brand .tagline {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin-top: 50px;
        min-height: calc(100vh - 50px);
        gap: 1.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        min-height: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        justify-content: center;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
    
    .band-placeholder {
        width: min(280px, 85vw);
        height: min(400px, 50vh);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-form {
        padding: 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .checkbox-group {
        gap: 0.75rem;
    }
    
    .checkbox-label {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .price-summary {
        padding: 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .price-summary h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .price-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        flex-direction: row;
        align-items: center;
    }
    
    .price-total {
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .submit-button {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .song-requests-modal {
        padding: 1rem;
        border-radius: 10px;
    }
    
    /* Mobile popup optimization */
    .discount-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        transform: translateY(100vh);
        transition: transform 0.3s ease;
    }
    
    .discount-popup.show {
        transform: translateY(0);
    }
    
    .popup-content {
        max-width: calc(100vw - 2rem);
        width: 100%;
        max-height: 80vh;
        padding: 1.5rem;
        margin: 0;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .popup-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .popup-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .link-container {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .link-container input {
        padding: 1rem;
        font-size: 16px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .link-container button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        width: 100%;
        font-weight: 600;
    }
    
    .popup-note {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-top: 1rem;
    }
    
    .popup-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .cta-button {
        max-width: 300px;
    }
    
    .band-placeholder {
        width: min(320px, 80vw);
        height: min(480px, 60vh);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .price-summary {
        padding: 1.5rem;
    }
    
    .checkbox-label {
        padding: 1rem;
    }
    
    /* Tablet popup optimization */
    .discount-popup {
        width: 400px;
        right: -400px;
        padding: 1rem;
    }
    
    .popup-content {
        max-width: 350px;
        padding: 1.75rem;
    }
    
    .link-container {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav {
        padding: 0.75rem 1.5rem;
    }
    
    .hero {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .band-placeholder {
        width: min(300px, 40vw);
        height: min(500px, 65vh);
    }
}

/* Tablet Landscape and Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: var(--container-lg);
        padding: 0 var(--space-xl);
    }
    
    .hero {
        padding: var(--space-3xl) 0;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-lg);
    }
    
    .booking-form {
        padding: var(--space-xl);
        margin: var(--space-lg);
    }
    
    .form-section {
        margin-bottom: var(--space-xl);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* Large Desktop */
@media (min-width: 1025px) {
    .container {
        max-width: var(--container-xl);
        padding: 0 var(--space-2xl);
    }
    
    .nav {
        padding: var(--space-md) clamp(2rem, 4vw, 3rem);
    }
    
    .hero {
        padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
        min-height: 85vh;
    }
    
    .nav-brand h1 {
        font-size: var(--text-2xl);
        letter-spacing: 2px;
    }
    
    .nav-brand .tagline {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-xl);
    }
    
    .hero-description {
        font-size: var(--text-xl);
        margin-bottom: var(--space-2xl);
    }
    
    .booking-form {
        padding: var(--space-2xl);
        margin: var(--space-xl) auto;
        max-width: 800px;
    }
    
    .form-section {
        margin-bottom: var(--space-2xl);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }
    
    .footer {
        padding: var(--space-3xl) 0 var(--space-xl);
    }
}

/* Extra Large Desktop */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 var(--space-3xl);
    }
    
    .nav {
        padding: var(--space-md) clamp(3rem, 5vw, 4rem);
    }
    
    .hero {
        min-height: 90vh;
        padding: clamp(4rem, 8vw, 6rem) clamp(3rem, 5vw, 4rem);
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
    
    .band-placeholder {
        width: clamp(350px, 30vw, 500px);
        height: clamp(500px, 45vh, 650px);
    }
    
    .band-placeholder i {
        font-size: clamp(4rem, 6vw, 7rem);
    }
    
    .hero-description {
        font-size: var(--text-xl);
        max-width: 700px;
    }
    
    .booking-form {
        max-width: 900px;
        padding: var(--space-3xl);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.feature:hover,
.review:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Focus States */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}