@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Manrope:wght@400;500;700&display=swap');

:root {
    --primary-color: #d4af37; /* Metallic Gold */
    --primary-hover: #b4942b;
    --secondary-color: #1a1a1a;
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-main: #ffffff;      /* Pure white for main text */
    --text-muted: #dcdcdc;     /* Lighter grey-white for better visibility on dark */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
}

/* Force Bootstrap text-muted to use our readable color */
.text-muted {
    color: var(--text-muted) !important;
}

/* Force Bootstrap text-secondary to be readable */
.text-secondary {
    color: #b0b0b0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-main);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Helper Buttons */
.btn-gold {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn-gold:hover {
    background-color: var(--primary-hover);
    color: #000;
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../../1.jpeg') no-repeat center center/cover;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
}

/* Features/Services Cards */
.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

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

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

/* Venue Cards */
.venue-card {
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border: none;
}

.venue-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

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

.venue-info {
    padding: 1.5rem;
}

.venue-rating {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Events List */
.event-item {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    margin-bottom: 1rem;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
}

.event-date {
    background: var(--primary-color);
    color: #000;
    padding: 10px 15px;
    text-align: center;
    min-width: 80px;
    font-weight: bold;
    margin-right: 1.5rem;
}

.event-date span {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-details h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

/* FAQ Accordion */
.accordion-item {
    background-color: var(--bg-card);
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background-color: var(--bg-card);
    color: var(--text-main);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--text-muted);
}

/* Stats Counter */
.counter-box {
    text-align: center;
    padding: 40px 0;
}
.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Footer */
footer {
    background-color: #000;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-widget h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: white;
}

