 /* Global Styles */
 :root {
    --smoky-black: #0D0D07;
    --gold: #D4AF37;
    --white-smoke: #F5F5F5;
    --dark-goldenrod: #B8860B;
    --soft-grey: #C0C0C0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--smoky-black);
    color: var(--white-smoke);
    line-height: 1.6;
}

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

a:hover {
    color: var(--dark-goldenrod);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--smoky-black);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-goldenrod);
    color: var(--white-smoke);
}

/* Header Styles */
header {
    background-color: rgba(13, 13, 7, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 14px;
    color: var(--soft-grey);
}

/* Navigation */
.nav-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white-smoke);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.login-btn {
    margin-left: 30px;
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(13, 13, 7, 0.8), rgba(13, 13, 7, 0.8)), url('/api/placeholder/1200/800') no-repeat center center/cover;
    margin-top: 180px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-smoke);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h2 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--soft-grey);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Media query for responsive design */
@media screen and (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-image {
        order: -1; /* Places image above text on mobile */
    }
}
/* Partners/Venues Section */
.partners {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.95);
    position: relative;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 30px;
}

.partners-header h3 {
    font-size: 28px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
  }
  
  .partners-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
  }
  
  .partner-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 90px;
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .partners {
        padding: 30px 0;
    }
    
    .partners-header h3 {
        font-size: 24px;
    }
}
/* Services Section */
.services {
    padding: 100px 0;
    background-color: rgba(13, 13, 7, 0.95);
}

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

.section-header h3 {
    font-size: 36px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-header p {
    color: var(--soft-grey);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(30, 30, 20, 0.7);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 48px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white-smoke);
}

.service-card p {
    color: var(--soft-grey);
    margin-bottom: 20px;
    min-height: 80px;
}

/* Make sure the service cards can accommodate expansion */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Override button styles to ensure proper functioning */
.service-card .btn {
    cursor: pointer;
    display: inline-block;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(rgba(13, 13, 7, 0.95), rgba(13, 13, 7, 0.85)), url('/api/placeholder/1200/800') no-repeat center center/cover;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 36px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.about-text p {
    color: var(--soft-grey);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    background-color: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: rgba(13, 13, 7, 0.95);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--gold);
    margin-right: 15px;
    font-size: 20px;
}

.contact-text {
    color: var(--soft-grey);
}

.contact-form {
    background-color: rgba(30, 30, 20, 0.7);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white-smoke);
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: rgba(13, 13, 7, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--white-smoke);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #080804;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--soft-grey);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--smoky-black);
}

.footer-heading {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--soft-grey);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--soft-grey);
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--gold);
        font-size: 24px;
        cursor: pointer;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: rgba(13, 13, 7, 0.95);
        transition: left 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .login-btn {
        margin-left: 0;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .services-grid, .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .section-header h3 {
        font-size: 5spx;
    }
}
#thankYouPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0D0D07;
    border: 1px solid #B8860B;
    padding: 20px;
    color: white;
    z-index: 1000;
}

#thankYouPopup p {
    font-size: 16px;
    margin-bottom: 15px;
}

#thankYouPopup button {
    background-color: #B8860B;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#thankYouPopup button:hover {
    background-color: #FFD700;
}
