@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-black: #050505;
    --bg-darker: #000000;
    --bg-card: #0c0c0c;
    --gold: #dfb160;
    --gold-hover: #c49646;
    --text-white: #ffffff;
    --text-grey: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-top: 0;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(223, 177, 96, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.navbar-brand-logo {
    width: 45px;
    height: auto;
}
.navbar-brand-text {
    display: flex;
    flex-direction: column;
}
.navbar-brand-text .title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}
.navbar-brand-text .subtitle {
    color: var(--text-grey);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0 10px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
    color: var(--gold);
}
.navbar-nav .nav-link.active {
    color: var(--gold);
}
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

.btn-nav-outline {
    border: 1px solid var(--gold);
    color: var(--text-white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: 0.3s;
    margin-left: 20px;
}
.btn-nav-outline:hover {
    background-color: var(--gold);
    color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero-subtitle-top {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}
.hero-title {
    color: var(--gold);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.hero-title-sub {
    color: var(--text-white);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
}
.hero-title-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    font-size: 18px;
    font-family: var(--font-heading);
    margin-bottom: 30px;
}
.hero-title-mini::before, .hero-title-mini::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gold);
}
.hero-desc {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.btn-gold {
    background-color: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 2px;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #000;
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 2px;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}

.social-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-sidebar a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}
.social-sidebar a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--text-white);
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0 !important;
    text-indent: -999px;
    overflow: hidden;
}
.slider-dot.active {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Common Sections */
.section-padding {
    padding: 80px 0;
    background-color: var(--bg-black);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.section-subtitle-small {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}
.section-title {
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0;
}
.title-flourish {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 250px;
}
.title-flourish::before, .title-flourish::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(223, 177, 96, 0.3);
}
.title-flourish i {
    color: var(--gold);
    font-size: 12px;
}

/* Event Cards */
.event-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(223, 177, 96, 0.15);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.event-img-wrap {
    position: relative;
    height: 200px;
}
.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-date {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background-color: var(--gold);
    color: #000;
    width: 50px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 2;
}
.event-date .day {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}
.event-date .month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.event-card-body {
    padding: 30px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.event-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.event-meta {
    color: var(--text-grey);
    font-size: 11px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-meta i {
    color: var(--gold);
    width: 12px;
    text-align: center;
}
.event-price {
    color: var(--text-white);
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.event-price span {
    font-weight: 700;
    font-size: 16px;
}
.btn-book-full {
    background-color: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px;
    border: none;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin-top: auto;
}
.btn-book-full:hover {
    background-color: var(--gold-hover);
    color: #000;
}

/* Artists */
.artist-card {
    text-align: center;
}
.artist-img-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid var(--gold);
    margin: 0 auto 20px;
}
.artist-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.artist-name {
    color: var(--text-white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}
.artist-genre {
    color: var(--text-grey);
    font-size: 10px;
}
.view-all-artists-btn {
    display: block;
    width: 250px;
    margin: 50px auto 0;
    text-align: center;
    background-color: var(--gold);
    color: #000;
    padding: 12px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.3s;
}

/* Features */
.features-section {
    background-color: var(--bg-card);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-col {
    text-align: center;
    padding: 0 15px;
    position: relative;
}
@media (min-width: 992px) {
    .feature-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: rgba(255,255,255,0.1);
    }
}
.feature-icon {
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 15px;
}
.feature-title {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-desc {
    color: var(--text-grey);
    font-size: 11px;
    line-height: 1.6;
}

/* Sponsors */
.sponsors-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    flex-wrap: wrap;
}
.sponsor-logo {
    max-height: 40px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: 0.3s;
}
.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.sponsor-nav {
    color: var(--gold);
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #030303;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(223, 177, 96, 0.1);
}
.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 40px;
}
.footer-logo-text .title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.footer-logo-text .subtitle {
    color: var(--text-grey);
    font-size: 8px;
    text-transform: uppercase;
}
.footer-desc {
    color: var(--text-grey);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 15px;
}
.footer-socials a {
    color: var(--gold);
    font-size: 14px;
}
.footer-heading {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-grey);
    font-size: 12px;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}
.newsletter-text {
    color: var(--text-grey);
    font-size: 12px;
    margin-bottom: 15px;
}
.newsletter-form {
    display: flex;
}
.newsletter-form input {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 10px 15px;
    font-size: 12px;
    width: 100%;
    outline: none;
}
.newsletter-form button {
    background-color: var(--gold);
    border: none;
    color: #000;
    padding: 0 15px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-grey);
    font-size: 11px;
}
.footer-bottom .heart {
    color: red;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #080808;
    border-top: 1px solid rgba(223, 177, 96, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
    padding-bottom: env(safe-area-inset-bottom, 10px);
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 10px;
    transition: 0.3s;
    text-transform: uppercase;
    flex: 1;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--gold);
}
.mobile-bottom-nav .center-btn {
    position: relative;
    top: -20px;
}
.mobile-bottom-nav .ticket-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #080808;
    box-shadow: 0 5px 15px rgba(223, 177, 96, 0.4);
    transition: transform 0.3s;
}
.mobile-bottom-nav .center-btn:hover .ticket-icon-wrap {
    transform: scale(1.05);
}
.mobile-bottom-nav .ticket-icon-wrap i {
    font-size: 22px;
    margin: 0;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 75px;
    }
}
