/* Modern Luxury Theme Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c8a97e;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --secondary-color: #2c2c2c;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
}

.pm2 img{
    height: 60px !important;
    width: auto;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.navbar-brand:hover {
    color: var(--accent-color);
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light) !important;
    margin: 0 1.2rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    font-size: 40px;
    border: none;
    padding: 0;
    color: var(--text-light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7),
        rgba(26, 26, 26, 0.5)
    );
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1s;
}

.btn-outline-light {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-light);
    background: transparent;
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-light);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline-light:hover {
    color: var(--text-dark);
}

.btn-outline-light:hover::before {
    width: 100%;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 1.5s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Latest Release Section */
.releases-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

.featured-release {
    max-width: 1000px;
    margin: 0 auto;
}

.release-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.release-artwork {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.release-artwork:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.release-artwork:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.release-artwork:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.release-details {
    padding: 20px 0;
}

.artist-name {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.song-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.release-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.streaming-links {
    display: flex;
    gap: 15px;
}

.streaming-links .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .release-content {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .release-details {
        text-align: center;
    }

    .streaming-links {
        justify-content: center;
    }

    .song-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .releases-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .release-content {
        padding: 20px;
    }

    .song-title {
        font-size: 1.8rem;
    }

    .release-description {
        font-size: 1rem;
    }

    .streaming-links .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
}

.about-section .section-header {
    margin-bottom: 40px;
}

.about-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content {
    padding-right: 40px;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .about-section .section-header {
        text-align: center;
    }

    .about-section .accent-line {
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content .lead {
        font-size: 1.1rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 15px;
    }
}

/* Artists Section */
.artists-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.artist-card:hover .social-overlay {
    opacity: 1;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.artist-card:hover .social-icon {
    transform: translateY(0);
}

.social-icon:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.artist-info {
    padding: 30px;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.artist-info .genre {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.artist-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .artists-section {
        padding: 60px 0;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto 0;
    }

    .artist-info h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p,
.info-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links .social-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-links .social-icon:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    border: 1px solid var(--accent-color);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-accent:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.info-item .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    padding: 8px 15px;
    transition: var(--transition-smooth);
}

.info-item .btn-outline-light:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
        margin-top: 25px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .info-item i {
        font-size: 1.8rem;
    }

    .form-control {
        padding: 10px 15px;
    }
}

/* Map Container Styles */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.9);
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0);
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.events-timeline {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.event-date {
    background: var(--accent-color);
    padding: 20px;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .month {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 5px 0;
}

.event-date .year {
    font-size: 1.1rem;
    opacity: 0.8;
}

.event-content {
    flex: 1;
    display: flex;
    padding: 20px;
    gap: 20px;
}

.event-image {
    position: relative;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.event-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.event-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.event-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-actions {
    display: flex;
    gap: 15px;
}

.add-to-calendar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .event-content {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        padding: 15px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }

    .event-date .month,
    .event-date .year {
        font-size: 1rem;
    }

    .event-date .day {
        font-size: 1.8rem;
        margin: 0;
    }

    .event-content {
        padding: 15px;
    }

    .event-details h3 {
        font-size: 1.5rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 10px;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Modern Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card.modern {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    max-width: 100%;
}

.event-card.modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.event-tag {
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

.action-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 0.9rem;
}

.action-icon:hover {
    background: var(--accent-color);
    color: #fff;
}

.event-image {
    width: 100%;
    height: 200px;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card.modern:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 1.25rem;
}

.event-date {
    position: absolute;
    top: 160px;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
}

.event-date .date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    line-height: 1.4;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #888;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-meta i {
    color: var(--accent-color);
}

.event-details p {
    color: #ccc;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.event-card.modern.coming-soon {
    background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
    min-height: 200px;
}

.event-card.modern.coming-soon .event-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.event-card.modern.coming-soon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.event-card.modern.coming-soon h3 {
    color: #fff;
    margin-bottom: 0.8rem;
}

.event-card.modern.coming-soon p {
    color: #888;
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card-front {
    background-color: var(--dark-bg);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front .event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.flip-card-front .event-date {
    background: var(--accent-color);
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    text-align: center;
}

.flip-card-front .date {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.flip-card-front .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.flip-card-front h3 {
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
}

.flip-card-back {
    background-color: var(--dark-bg);
    color: white;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: column;
    gap: 1.5rem;
}

.flip-card-back .event-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.flip-card-back h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    text-align: center;
}

.flip-card-back .event-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ccc;
}

.flip-card-back .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.flip-card-back .event-meta i {
    color: var(--accent-color);
    width: 20px;
}

.flip-card-back p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.flip-card-back .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.flip-card-back .btn:hover {
    background: white;
    color: var(--accent-color);
}

.flip-card.coming-soon .flip-card-front {
    background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card.coming-soon i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.flip-card.coming-soon .flip-card-back {
    background: linear-gradient(45deg, var(--darker-bg), var(--dark-bg));
}

@media (max-width: 991px) {
    .event-date{
        display: none !important;
    }
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .event-date{
        display: none !important;
    }

    .flip-card {
        height: 350px;
    }

    .flip-card-front .event-overlay {
        padding: 1.5rem;
    }

    .flip-card-back {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding-top: 4rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #ccc;
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #ccc;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .footer-title {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-color);
        border-radius: 4px;
    }

    .navbar-logo {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 60px;
    }
}

/* Social Media Feeds Section */
.social-feeds-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px 0;
}

.social-feed-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    height: 670px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.social-feed-container:hover {
    transform: translateY(-5px);
}

.social-feed-container .fb-page,
.social-feed-container .fb-page > span,
.social-feed-container .fb-page iframe,
.social-feed-container .twitter-timeline {
    width: 100% !important;
    max-width: 600px !important;
    height: 100% !important;
}

.social-feed-container .fb-page > span {
    display: block !important;
}

/* Responsive adjustments for social feeds */
@media (max-width: 1200px) {
    .social-feed-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .social-feed-container {
        height: 600px;
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .social-feed-container {
        height: 500px;
        padding: 15px;
    }
}