
:root {
    --primary-color: #ff0080;
    --primary-light: #ff4da6;
    --primary-dark: #cc0066;
    --header-bg: #9b0465;
    --header-gradient: linear-gradient(to right, #66003b, #9b0465);
    --dark-purple: #1a0017;
    --light-text: #ffffff;
    --dark-text: #212529;
    --light-border: rgba(255, 255, 255, 0.2);
    --dark-border: rgba(0, 0, 0, 0.2);
    --light-bg: #ffffff;
    --dark-bg: #000;
    --light-card: #f8f9fa;
    --dark-card: #1e1e1e;
    --light-hover: #f0f0f0;
    --dark-hover: #2a2a2a;
}

[data-theme="light"] {
    --bg-color: var(--light-bg);
    --text-color: var(--dark-text);
    --card-bg: var(--light-card);
    --border-color: var(--dark-border);
    --hover-color: var(--light-hover);
    --footer-bg: #000000;
}

[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --text-color: var(--light-text);
    --card-bg: var(--dark-card);
    --border-color: var(--light-border);
    --hover-color: var(--dark-hover);
    --footer-bg: #000000;
}

body {
    font-family: Inter,serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;

}





.top-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Updated Header Styles */
.header-container {
    position: absolute;
    top: 40px; /* Adjusted to be right after top-nav */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 999;
}

.header {
    background: var(--header-gradient);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn-sign {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
}

.btn-sign-in {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white;
}

.btn-sign-up {
    background-color: black; !important;
    border: 2px solid black !important;
    color: white;
}

.hero-section {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}
.search-section{
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 9;
    margin-top: -60px;
}

.search-form {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .search-section {
        margin-top: -30px;
    }

    .search-form {
        padding: 15px;
    }

    .search-row {
        flex-direction: column;
        gap: 10px;
    }

    .search-group {
        min-width: 100%;
    }

    .search-button {
        margin-top: 10px;
        width: 100%;
        border-radius: 5px;
    }
}

.search-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23777' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

.search-date {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.search-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 20px;
}

.search-button i {
    font-size: 18px;
}

.home-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

/* FROM POP BALLADS TO EMO ENCORES SLIDER */
.slider-section {
    position: relative;
    margin: 60px 0px;
    margin-bottom: 3rem;
    z-index: 2;
}

.music-slider {
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.music-slider-inner {
    background-color: #000;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.music-slide {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.music-slide.active {
    display: block;
}

.music-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.music-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.music-slide-heading {
    display: inline-block;
    background-color: #ef8bef;
    color: black;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.music-slide-title-first {
    display: inline-block;
    background-color: #7080ff;
    padding: 5px 15px;
    margin-bottom: 5px;
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
}

.music-slide-title-second {
    display: inline-block;
    background-color: #ef8bef;
    padding: 5px 15px;
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
}

.music-slide-button {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
    cursor: pointer;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

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

.section-subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.view-all {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-btn {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

.event-content {
    padding: 1rem;
}

.event-date {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.event-date i {
    margin-right: 0.5rem;
}

.event-title {
    color: #000;
    font-family: Inter,serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px; /* 150% */
}

.event-location {
    display: flex;
    align-items: center;
    color: #777;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-location i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.event-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.event-price span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
}

.btn-tickets {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 0;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-tickets:hover {
    background-color: var(--primary-dark);
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #ff4d6d;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn.liked {
    background-color: #ff4d6d;
    color: white;
}

.event-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.event-tag {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.city-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover img {
    transform: scale(1.05);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
}

.city-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.artist-card {
    margin-bottom: 1.5rem;
}

.artist-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.artist-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.artist-genre {
    color: #777;
    font-size: 0.9rem;
}

.event-info {
    display: flex;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.event-info i {
    margin-right: 0.5rem;
}

.artist-venue {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.music-genre-section {
    margin: 4rem 0;
}

.genre-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    height: 100%;
}

.genre-card.large {
    height: 640px;
}

.genre-card.medium {
    height: 300px;
}

.genre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.genre-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.genre-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.genre-description {
    color: #777;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.genre-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.faq-title span {
    color: var(--primary-color);
}

.faq-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.5rem;
    border: none;
    border-bottom: 1px solid #eee;
}

.faq-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: #fff;
    border: none;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.faq-button:hover {
    background-color: #f9f9f9;
}

.faq-button .icon {
    transition: transform 0.3s ease;
    color: #fff;
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
}

.faq-button[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.faq-button[aria-expanded="true"] {
    background-color: #f9f9f9;
}

.faq-collapse {
    padding: 0 1.5rem 1rem;
    color: #666;
}

.faq-collapse p {
    margin-bottom: 0;
}

.faq-item-pink .faq-button {
    background-color: var(--primary-color);
    color: white;
}

.faq-item-dark .faq-button {
    background-color: #000;
    color: white;
}

.faq-col {
    padding: 0;
}

.business-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
    margin: 4rem 0;
}

[data-theme="dark"] .business-section {
    background-color: #1e1e1e;
}

.business-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.business-subtitle {
    color: #777;
    margin-bottom: 2rem;
}

.business-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background-color: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--text-color);
}

.business-card {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .business-card {
    background-color: #262626;
}

.business-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    text-align: center;
}

.business-card-subtitle {
    color: #777;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 90%;
    line-height: 1.5;
}

.btn-register {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-register:hover {
    background-color: var(--primary-dark, #cc0066);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.vendor-link {
    display: block;
    text-align: center;
    color: #777;
    text-decoration: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.vendor-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Updated App Section Styles */
.app-section {
    background-color: white;
    padding: 3rem 0;
    border-radius: 0;
    color: black;
}

.app-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.app-content-wrapper {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.app-title span {
    color: #ff0080;
}

.app-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #333;
}

.app-form-group {
    margin-bottom: 1.5rem;
}

.app-radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.app-radio-container {
    display: flex;
    align-items: center;
}

.app-radio-input {
    margin-right: 8px;
}

.app-input-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.app-button {
    background-color: #ff0080;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.app-download-label {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.app-store-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-store-button {
    display: flex;
    align-items: center;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    gap: 10px;
}

.app-store-icon {
    font-size: 1.8rem;
}

.app-store-text {
    display: flex;
    flex-direction: column;
}

.app-store-small {
    font-size: 0.7rem;
}

.app-store-name {
    font-size: 1rem;
    font-weight: 600;
}

.app-image-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.app-phone-image {
    max-width: 100%;
    height: auto;
}

/* Updated Footer Styles */
footer {
    background-color: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo span {
    color: var(--primary-color);
    font-style: italic;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.footer-subscribe {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    margin-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Custom Pagination Styles */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    background-color: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.pagination-item:hover:not(.disabled):not(.active) {
    background-color: var(--hover-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-item.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-color);
    font-weight: 500;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.mobile-nav {
    background: var(--header-gradient);
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
    padding: 15px;
    z-index: 998;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .search-form {
        margin-top: 20px;
    }

    .genre-content {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .music-slide-title-first,
    .music-slide-title-second {
        font-size: 1.8rem;
    }

    .app-store-buttons {
        flex-direction: column;
    }

    .top-nav-container {
        width: 60%;
    }

    .top-nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-nav-container {
        width: 80%;
    }

    .top-nav {
        padding: 8px 15px;
    }

    .top-nav-links {
        gap: 10px;
        justify-content: space-around;
        width: 100%;
    }

    .header-container {
        width: 95%;
        top: 40px;
    }

    .header {
        padding: 15px;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .auth-buttons {
        display: flex;
        align-items: center;
    }

    .login-btn {
        padding: 5px 15px;
        font-size: 14px;
    }

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

    .search-group {
        min-width: 100%;
    }

    .search-button {
        margin: 10px auto;
    }

    .music-slide-title-first,
    .music-slide-title-second {
        font-size: 1.5rem;
    }

    .app-store-btn {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .top-nav-container {
        width: 100%;
        left: 0;
        right: 0;
    }

    .top-nav {
        border-radius: 0;
    }

    .header-container {
        width: 100%;
        top: 35px;
    }

    .header {
        border-radius: 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .login-btn {
        padding: 4px 12px;
        font-size: 12px;
    }

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

:root {
    --primary-color: #ff0080;
    --primary-light: #ff4da6;
    --primary-dark: #cc0066;
    --header-bg: #9b0465;
    --header-gradient: linear-gradient(to right, #66003b, #9b0465);
    --dark-purple: #1a0017;
    --light-text: #ffffff;
    --dark-text: #212529;
    --light-border: rgba(255, 255, 255, 0.2);
    --dark-border: rgba(0, 0, 0, 0.2);
    --light-bg: #ffffff;
    --dark-bg: #000;
    --light-card: #f8f9fa;
    --dark-card: #1e1e1e;
    --light-hover: #f0f0f0;
    --dark-hover: #2a2a2a;
}

[data-theme="light"] {
    --bg-color: var(--light-bg);
    --text-color: var(--dark-text);
    --card-bg: var(--light-card);
    --border-color: var(--dark-border);
    --hover-color: var(--light-hover);
    --footer-bg: #000000;
}

[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --text-color: var(--light-text);
    --card-bg: var(--dark-card);
    --border-color: var(--light-border);
    --hover-color: var(--dark-hover);
    --footer-bg: #000000;
}

body {
    font-family: Inter,serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Updated Top Nav Styles */
.top-nav-container {
    right: 10%;
    width: 20%;
    z-index: 1001;
    position: absolute;
    top: 3px;
    left: auto;
}

.top-nav {
    background-color: #000;
    padding: 8px 20px;
    border-radius:  10px;
    display: flex;
    justify-content: flex-end;
}

.top-nav-links {
    display: flex;
    gap: 40px;
}

.top-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Updated Header Styles */
.header-container {
    position: absolute;
    top: 40px; /* Adjusted to be right after top-nav */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 999;
}

.header {
    background: var(--header-gradient);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn-sign {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
}

.btn-sign-in {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white;
}

.btn-sign-up {
    background-color: black; !important;
    border: 2px solid black !important;
    color: white;
}

.hero-section {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}

:root {
    --primary-color: #ff0080;
    --primary-light: #ff4da6;
    --primary-dark: #cc0066;
    --header-bg: #9b0465;
    --header-gradient: linear-gradient(to right, #66003b, #9b0465);
    --dark-purple: #1a0017;
    --light-text: #ffffff;
    --dark-text: #212529;
    --light-border: rgba(255, 255, 255, 0.2);
    --dark-border: rgba(0, 0, 0, 0.2);
    --light-bg: #ffffff;
    --dark-bg: #000;
    --light-card: #f8f9fa;
    --dark-card: #1e1e1e;
    --light-hover: #f0f0f0;
    --dark-hover: #2a2a2a;
}

[data-theme="light"] {
    --bg-color: var(--light-bg);
    --text-color: var(--dark-text);
    --card-bg: var(--light-card);
    --border-color: var(--dark-border);
    --hover-color: var(--light-hover);
    --footer-bg: #000000;
}

[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --text-color: var(--light-text);
    --card-bg: var(--dark-card);
    --border-color: var(--light-border);
    --hover-color: var(--dark-hover);
    --footer-bg: #000000;
}

body {
    font-family: Inter,serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;

}



.top-nav {
    background-color: #000;
    padding: 8px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: flex-end;
}



.top-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Updated Header Styles */
.header-container {
    position: absolute;
    top: 40px; /* Adjusted to be right after top-nav */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 999;
}

.header {
    background: var(--header-gradient);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.btn-sign {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
}

.btn-sign-in {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white;
}

.btn-sign-up {
    background-color: black; !important;
    border: 2px solid black !important;
    color: white;
}

.hero-section {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}
.search-section{
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 9;
    margin-top: -60px;
}

.search-form {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
}

/* Profile Section Styles */
.profile-container {
    display: flex;
    min-height: calc(100vh - 40vh - 300px);
    background-color: #000;
    justify-content: center;
    padding: 50px 0;
}
.profile-width{
    width: 100%;
    max-width: 1200px;
    display: flex;
    background-color: #000;
    padding: 20px;
    justify-content: center;
}

.profile-sidebar {
    width: 250px;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

.profile-main {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    overflow: auto;
}

.profile-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.profile-menu-item {
    margin-bottom: 15px;
}

.profile-menu-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.profile-menu-link:hover, .profile-menu-link.active {
    color: var(--primary-color);
}

.profile-menu-icon {
    width: 20px;
    margin-right: 10px;
    opacity: 0.7;
}

.logout-btn {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: auto;
    padding: 8px 0;
}

.logout-btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Help Center Styles */
.help-greeting {
    margin-bottom: 20px;
}

.help-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.help-text {
    color: #666;
    margin-bottom: 15px;
}

.help-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-section {
    margin-bottom: 30px;
}

.faq-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-item {
    background-color: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    padding: 0 15px 15px;
    color: #666;
}

.contact-options {
    display: flex;
    gap: 15px;
}

.contact-option {
    flex: 1;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

/* Settings Styles */
.settings-section {
    margin-bottom: 30px;
}

.settings-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.settings-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.settings-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.password-section {
    margin-top: 30px;
}

.password-fields {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.password-field {
    flex: 1;
}

.password-field label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.password-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.save-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    float: right;
}

.delete-account {
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
}

/* Gift Card Styles */
.voucher-section {
    margin-bottom: 30px;
}

.code-input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.code-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.code-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
}

.voucher-empty {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.voucher-illustration {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.voucher-empty-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.voucher-empty-text {
    color: #666;
}

/* Order History Styles */
.orders-section {
    margin-bottom: 30px;
}

.orders-heading {
    font-weight: 600;
    margin-bottom: 15px;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-weight: 500;
}

.order-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.order-artist {
    display: flex;
    align-items: center;
}

.order-artist-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.order-id {
    color: #666;
    font-size: 14px;
}

.order-price {
    font-weight: 500;
}

.order-details-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Order Details Styles */
.order-details-section {
    margin-bottom: 30px;
}

.order-number {
    color: var(--primary-color);
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.order-info-box {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
}

.order-info-heading {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.order-artist-details {
    margin-bottom: 15px;
}

.order-artist-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-venue, .order-date, .order-seat {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.order-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-total {
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.payment-method {
    font-weight: 500;
    margin-bottom: 5px;
}

.payment-id {
    color: #666;
    font-size: 14px;
}

.order-download-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
}

.order-customer {
    margin-top: 20px;
}

.customer-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-email {
    color: #666;
    margin-bottom: 10px;
}

.customer-note {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #666;
}

/* Profile Edit Styles */
.profile-edit-section {
    margin-bottom: 30px;
}

.profile-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.credentials-section {
    margin-top: 30px;
}

.password-toggle {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

/* Responsive adjustments for profile */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .password-fields {
        flex-direction: column;
    }

    /* Mobile header improvements */
    .header {
        padding: 10px;
    }

    .auth-buttons {
        gap: 5px;
    }

    .btn-sign {
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    .mobile-nav-links a {
        padding: 10px 0;
        font-size: 1rem;
    }

    /* Mobile footer improvements */
    footer h5 {
        font-size: 1.1rem;
    }

    footer ul li {
        margin-bottom: 10px;
    }

    footer .input-group {
        flex-wrap: nowrap;
    }
}

/* Slider Styles */
.city-cards-slider,
.trending-events-slider,
.featured-events-slider,
.event-types-slider,
.trending-events-slider-2 {
    position: relative;
    overflow: hidden;
    padding: 0 30px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.city-card-item,
.trending-event-item,
.featured-event-item,
.event-type-item,
.trending-event-item-2 {
    transition: all 3s ease;
}
