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

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1e1e2e, #3b82f6);
    color: #ffffff;
    line-height: 1.6;
    
}

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

/* Header */
header {
    background-color: #1e1e2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #f97316;
}

.navbar {
    display: flex;
    gap: 20px;
   /* flex-wrap: wrap;*/
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #f97316;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    color: #1e1e2e;
}

.btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2563eb;
}

.visitor-count {
    font-size: 14px;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h1, .section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    transition: color 0.3s;
}

.section h1:hover, .section h2:hover {
    color: #f97316;
}

.section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}
/* artists */
#artist{
    max-width: 1200px;
    height: auto;
    height: auto;
    margin: 0 auto;

}
#artist-card{
    width: 90%;
    height: auto;
    margin: 0 auto;
}
#artist-card img{
     width: 100%;
    height: auto;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
 /*   background-color: #ffffff;
    border: 2px solid #3b82f6;*/
    background: linear-gradient(135deg,#1e3a8a,#3b82f6);
    border: 2px solid #60a5fa;
    border-radius: 8px;
    padding: 20px;
  /*  transition: transform 0.3s, box-shadow 0.3s;*/
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;

}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    
    background: linear-gradient(135deg, #2563eb, #60a5fa);  
    border-color: #f97316; 

}

.card img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card audio {
    width: 100%;
    margin: 10px 0;
    background: #ffffff; 
}

.card p {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    color: #e5e7eb; 
}
.card a{
    text-decoration: none;
}

/* Hero Area (Circular Images) */
.hero-area {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 15px;
}

/* Song Image */
.song-image {
    width: 100%;
   /* max-width: 150px; */
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Review Image */
.card .review-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Fullscreen Image */
.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 46, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.fullscreen-image.hidden {
    display: none;
}

.fullscreen-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f97316;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #ea580c;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
#feedback-form{
    width: 60%;
}
.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: #1e1e2e;
}

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

/* Ticker Animation */

.ticker {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    width:100%;
    position: fixed;
    bottom: 1%;
    width: 100%;
    direction: ltr;
}

.ticker span {
    display: inline-block;
     padding-left: 100%;
   animation:ticker 20s  linear infinite;
    will-change: transform;
    
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* Footer */
footer {
    background-color: #1e1e2e;
    color: #ffffff;
    padding: 40px 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.sitemap, .footer-links {
    flex: 1;
    min-width: 200px;
}

.sitemap h3, .footer-links h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.sitemap ul, .footer-links ul {
    list-style: none;
}

.sitemap ul li, .footer-links ul li {
    margin-bottom: 10px;
}

.sitemap ul li a, .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s;
}

.sitemap ul li a:hover, .footer-links ul li a:hover {
    color: #f97316;
}

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

.social-links a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1e1e2e;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar, .visitor-count {
        margin-top: 10px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        margin: 12px 100px;
    }
    
    .section h1, .section h2 {
        font-size: 28px;
    }
    #feedback-form{
    width: 80%;
}
    

    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media (max-width:500px){
    .card-grid {
        grid-template-columns: 1fr;
        margin: 12px 70px;
    }
}
@media (max-width:400px){
    #feedback-form{
    width: 95%;
}
.card-grid {
        grid-template-columns: 1fr;
        margin: 12px 20px;
    }
    .ticker {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    width:100%;
    position: fixed;
    bottom: 1%;
    width: 100%;
    direction: rtl;
}

.ticker span {
    display: inline-block;
     /* padding-left: 100%; */
   animation:ticker 30s  linear infinite;
    will-change: transform;
    
}

@keyframes ticker {
    0% { transform: translateX(-100); }
    100% { transform: translateX(100%); }
}

    
}