/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

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

/* Navigation Bar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .logo span {
    color: #ff0000;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right bottom, #000 0%, oklch(0.21 0.034 264.665) 50%, #000 100%);
}

.hero h1 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}

.hero h1 span {
    color: #ff0000;
}

.hero h1 .subtitle {
    color: #fff;
    font-size: 0.5em;
    display: block;
    margin-top: 10px;
}

.hero p {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #ff0000;
    color: #fff;
    border: 2px solid #ff0000;
    margin-right: 20px;
}

.hero-buttons .btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.hero-buttons .btn-secondary {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.hero-buttons .btn-secondary:hover {
    background-color: #eee;
    border-color: #eee;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

section h2 span {
    color: #ff0000;
}

section p {
    font-size: 20px;
    text-align: center;
    color: #ccc;
    margin-bottom: 60px;
}

/* Services Section */
.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.services-section .service-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.services-section .service-item:hover {
    border-color: rgba(255, 0, 0, 0.5);
}

.services-section .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.services-section .service-item:hover img {
    transform: scale(1.05);
}

.services-section .service-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-section .service-item p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.services-section .service-item .price {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
}

/* Portfolio Section */
.portfolio-section .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-section .portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.portfolio-section .portfolio-item:hover {
    border-color: #ff0000;
}

.portfolio-section .portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-section .portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-section .portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-section .portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-section .portfolio-item .overlay p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0; /* Override default section p margin */
}

/* Artists Section */
.artists-section .artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.artists-section .artist-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artists-section .artist-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff0000;
}

.artists-section .artist-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.artists-section .artist-item p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section .contact-info {
    text-align: center;
}

.contact-section .contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-section .contact-info strong {
    color: #ff0000;
}

.contact-section .social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-section .social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.contact-section .social-links a img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #111;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: 15px;
    }

    section h2 {
        font-size: 36px;
    }

    section p {
        font-size: 16px;
    }

    .services-section .service-grid,
    .portfolio-section .portfolio-grid,
    .artists-section .artist-grid {
        grid-template-columns: 1fr;
    }
}



/* Artist Profile Pages */
.artist-profile {
    padding: 120px 0 80px 0;
    background-color: #000;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.artist-avatar {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff0000;
}

.artist-info h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.artist-specialty {
    font-size: 24px;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 20px;
}

.artist-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.artist-contact p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.artist-contact a {
    color: #ff0000;
    text-decoration: none;
}

.artist-contact a:hover {
    text-decoration: underline;
}

.artist-portfolio-section {
    margin-bottom: 60px;
}

.artist-portfolio-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.booking-section {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.booking-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

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

.booking-buttons .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Artist item links */
.artists-section .artist-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.artists-section .artist-item a:hover {
    transform: translateY(-5px);
}

/* Responsive design for artist profile */
@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .artist-avatar {
        width: 150px;
        height: 150px;
    }

    .artist-info h1 {
        font-size: 36px;
    }

    .artist-specialty {
        font-size: 20px;
    }

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

    .booking-buttons .btn {
        width: 200px;
    }
}


/* Language Selector */
.language-selector {
    position: relative;
}

.current-lang {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

.current-lang .flag {
    font-size: 16px;
}

.current-lang .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-dropdown a .flag {
    font-size: 16px;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.contact-section h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ff0000;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 60px;
}

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

.contact-info h3 {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
}

.book-session-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.book-session-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.map-section h3 {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.telegram-btn {
    background: #0088cc;
    color: #fff;
}

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

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
}

.btn-icon {
    font-size: 18px;
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 30px;
    }
    
    .contact-section h2 {
        font-size: 36px;
    }
    
    .contact-info h3,
    .map-section h3 {
        font-size: 24px;
    }
    
    .book-session-btn {
        margin-bottom: 30px;
    }
    
    .language-dropdown {
        right: -20px;
    }
}

/* Mobile navigation adjustments */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .language-selector {
        margin-top: 10px;
    }
}

