:root {
    --primary-color: #fd5756;
    --secondary-color: #667eea;
    --dark-color: #2d3748;
    --light-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a80 100%);
    min-height: 90vh;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
}

.tagline {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    /* margin: 0 auto 2rem; */
}

.store-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.store-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.signup-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid #f1f1f1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.competition-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.competition-date {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.social-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e04b4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 87, 86, 0.3);
}

.btn-outline-light {
    border-color: white;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.form-control {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(253, 87, 86, 0.25);
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.why-choose-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-divider {
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 50px 0;
    border-radius: 5px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

 /* App Screenshots Section Styles */
.app-screenshot {
    transition: transform 0.3s ease;
}
.app-screenshot:hover {
    transform: translateY(-10px);
}

.mobile-mockup {
    position: relative;
    border-radius: 36px;
    background-color: #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    aspect-ratio: 9 / 19.5;
    max-width: 250px;
    margin: auto;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 25px;
    background-color: #333;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 3;
}

.mobile-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.screenshot-caption {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Event Gallery Section Styles */
.event-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 250px;
}

.event-card:hover {
    transform: translateY(-10px);
}

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

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 20px;
    color: white;
}

.event-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.event-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.music-note {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.note1 { top: 20%; left: 15%; animation-delay: 0s; }
.note2 { top: 40%; left: 25%; animation-delay: 0.5s; }
.note3 { top: 30%; left: 85%; animation-delay: 1s; }
.note4 { top: 60%; left: 80%; animation-delay: 1.5s; }
.note5 { top: 70%; left: 10%; animation-delay: 2s; }

@media (max-width: 768px) {
    .app-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .signup-form {
        padding: 20px 15px;
        padding: 25px;
    }

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

    .music-wave, .singer-illustration, .feature-graphic {
        display: none;
    }
}
/*support page css */
.support-section {
    background: var(--light-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.contact-block h1,
.contact-block h2 {
    color: var(--primary-color);
}

.contact-block ul {
    padding-left: 20px;
}

.contact-block li {
    margin-bottom: 10px;
}

/* Privacy policy css */

.policy-container {
    max-width: 900px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .policy-container h1,
  .policy-container h2 {
    color: var(--dark-color, #2d3748);
  }

  .policy-container p,
  .policy-container li {
    font-size: 1rem;
    color: #333;
  }

  .policy-container ul {
    padding-left: 1.2rem;
  }

  .policy-container a {
    color: var(--primary-color, #fd5756);
    text-decoration: none;
  }

  .policy-container a:hover {
    text-decoration: underline;
  }
