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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #5C5C5C;
    background-color: #EAE3D2;
}

html,
body {
    overflow-x: hidden;
    /* kill the white strip */
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: #2B2D42;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #5C5C5C;
    text-align: center;
    margin-bottom: 48px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4A373;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D4A373;
}

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

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

.contact-btn {
    background: #D4A373;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #8D2040;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* full screen */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* move text down */
    align-items: center;
    text-align: center;
}   

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.8), rgba(245, 158, 11, 0.3));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    padding: 20px 30px;
    border-radius: 12px;
    /* rounded corners */
    display: inline-block;
    /* shrink background to text size */
    color: white;
    max-width: 80%;
    /* keep it from being too wide */
    text-align: center;
}


.hero-title {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #D4A373;
    animation: fadeInUp 1s ease-out 0.2s both;
   
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D4A373;
    color: white;
}

.btn-primary:hover {
    background: #8D2040;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2B2D42;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;

}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;

}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #5C5C5C;
    position: relative;
    z-index: 1;

    /* background shield for notes */
    background: rgba(255, 255, 255, 0.9);
    /* semi-transparent white */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* optional soft shadow */

}

.highlights h3 {
    font-size: 1.5rem;
    color: #2B2D42;
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
}

.highlight-item {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 20px;
}

.highlight-item::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: #D4A373;
    font-weight: bold;
}

.musician-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.musician-photo:hover {
    transform: scale(1.02);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #EAE3D2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;


}

.review-stars {
    color: #D4A373;
    font-size: 1.2rem;
}

.review-date {
    color: #5C5C5C;
    font-size: 0.875rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #5C5C5C;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-event {
    color: #5C5C5C;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #D4A373;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A373;
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    color: #2B2D42;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B2D42;
    margin-bottom: 8px;
}

.pricing-duration {
    color: #5C5C5C;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-feature {
    padding: 8px 0;
    color: #5C5C5C;
    position: relative;
    padding-left: 20px;
}

.pricing-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8D2040;
    font-weight: bold;
}

.btn-pricing {
    background: #2B2D42;
    color: white;
    width: 100%;
}

.btn-pricing:hover {
    background: #2B2D42;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background: #D4A373;
}

.pricing-card.featured .btn-pricing:hover {
    background: #8D2040;
}

/* Специален стил за картата за транспорт */
.pricing-card.transport-card {
    border: 2px dashed #8D2040;
    /* Различна рамка */
    background: #fdf6f8;
    /* Лека розова основа */
    text-align: left;
    /* По-четим текст */

    /* Новото: центриране */
        grid-column: 1 / -1;
        /* заема цял ред в grid */
        max-width: 500px;
        /* ограничаваме ширината */
        margin: 0 auto;
        /* центриране */
}

.pricing-card.transport-card .pricing-title {
    color: #8D2040;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
}

.pricing-card.transport-card .pricing-duration {
    font-weight: 600;
    color: #5C5C5C;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card.transport-card .pricing-features {
    margin: 0;
    padding-left: 0;
}

.pricing-card.transport-card .pricing-feature {
    color: #2B2D42;
    font-size: 0.95rem;
    padding: 6px 0 6px 28px;
    /* повече отстояние отляво */
    position: relative;
}

.pricing-card.transport-card .pricing-feature::before {
    /* content: '🚌'; */
    position: absolute;
    left: 0;
    /* фиксираме иконата в началото */
    top: 50%;
    transform: translateY(-50%);
    /* центрира вертикално */
    font-size: 1rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    /* показва ги един под друг */
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
    text-align: center;
    word-break: break-word;
    /* предотвратява чупене на грозни места */
}

.new-price {
    font-size: 1.5rem;
    color: #8D2040;
    /* акцент */
    font-weight: 700;
    text-align: center;
    word-break: break-word;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #2B2D42;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4A373;
}

.contact-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.contact-item {
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #5C5C5C;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A373;
}
.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.social-title {
    font-size: 1.5rem;
    color: #D4A373;
}

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

.social-link {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #D4A373;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #2B2D42;
    color: white;
    padding: 60px 0 20px;

    position: relative;
    z-index: 1;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #D4A373;
    margin-bottom: 16px;
}

.footer-section p {
    margin-bottom: 8px;
    color: #EAE3D2;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #EAE3D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D4A373;
}

.footer-bottom {
    border-top: 1px solid #5C5C5C;
    padding-top: 20px;
    text-align: center;
    color: #5C5C5C;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section spacing and background */
.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2B2D42;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .add-review-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .pricing-card,
    .review-card {
        padding: 24px;
    }
}

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

.mb-4 {
    margin-bottom: 32px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 70px;
}

/* Add Review Section */
.add-review {
    padding: 100px 0;
    background: white;
}

.add-review-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.review-form-container {
    background: #EAE3D2;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}

.review-info-title {
    font-size: 1.5rem;
    color: #2B2D42;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;

    /* background shield for notes */
    background: rgba(255, 255, 255, 0.9);
    /* semi-transparent white */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* optional soft shadow */
}

.review-info p {
    color: #5C5C5C;
    margin-bottom: 24px;
    line-height: 1.7;

    position: relative;
    z-index: 1;

    /* background shield for notes */
    background: rgba(255, 255, 255, 0.9);
    /* semi-transparent white */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* optional soft shadow */
}

.review-guidelines h4 {
    color: #D4A373;
    margin-bottom: 12px;
}

.review-guidelines {
    position: relative;
    z-index: 1;

    /* background shield for notes */
    background: rgba(255, 255, 255, 0.9);
    /* semi-transparent white */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* optional soft shadow */
}

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 6px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    .add-review-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .review-form-container {
        padding: 24px;
    }

    .review-info-title {
        font-size: 1.25rem;
    }
}

#noteParticles {
    position: absolute;
    /* not fixed anymore */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body {
    position: relative;
    /* ensures canvas is relative to page */
}

/* .hero,
.about,
.reviews,
.add-review,
.pricing {
    position: relative;
    z-index: 1;
} */

html.lock-scroll,
body.lock-scroll,
body.loading {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

/* Loader overlay — very high z-index to beat any fixed elements */
#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
    /* practically topmost */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: auto;
}

/* Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e5e7eb;
    border-top: 6px solid #D4A373;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}


/* Допълнителни стилове за контактите */
/* .contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    font-size: 1.125rem;
    color: #EAE3D2;
}

.contact-item strong {
    color: #D4A373;
    margin-right: 6px;
}

.contact-link {
    color: #EAE3D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #D4A373;
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

