/* Custom CSS to enhance Tailwind */

:root {
    --gold: #d4af37;
    --dark-gold: #9e8129;
    --light-gold: #f1d976;
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Text Gold Color */
.text-gold {
    color: var(--gold);
}

/* Section Title Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    height: 3px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-tertiary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    color: var(--light-gold);
    border-bottom-color: var(--light-gold);
    transform: translateY(-2px);
}

.btn-black {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-black:hover {
    background: var(--gray-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Section Styles */
.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    overflow: hidden;
}

.slides {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slides:first-child {
    display: block;
}

.slides img {
    filter: brightness(0.7);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: var(--gold);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Event Cards Styles */
.event-card {
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.icon-container {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Contact Cards Styles */
.contact-card {
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder {
    color: #999;
}

/* Sponsor Logo Styles */
.sponsors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.sponsor-logo {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Social Icon Styles */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: black;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-black {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .icon-container {
        font-size: 2rem;
    }
}

/* Black and Gold theme styles */
:root {
    --gold: #FFD700;
    --gold-dark: #D4AF37;
    --gold-light: #FFDF00;
    --black: #000000;
  }
  
  .notification-overlay {
    animation: fadeInOverlay 0.3s ease-out forwards;
  }
  
  .gold-theme-notification {
    background-color: var(--black);
    border: 2px solid var(--gold);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  
  /* Add gold color to text */
  .text-gold {
    color: var(--gold);
  }
  
  /* Gold button styling */
  .bg-gold {
    background-color: var(--gold);
  }
  
  .bg-gold-dark {
    background-color: var(--gold-dark);
  }
  
  .gold-accent-border {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  
  /* Decorative corner accents */
  .gold-accent-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
  }
  
  .gold-accent-corner.top-right {
    top: 10px;
    right: 10px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  
  .gold-accent-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }
  
  @keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Add a subtle shimmer effect to gold elements */
  @keyframes goldShimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
  }
  
  .gold-theme-notification::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--gold-light);
    border-radius: inherit;
    opacity: 0.6;
    pointer-events: none;
    animation: goldShimmer 2s infinite;
  }

  .application-notice-modal {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.text-gold {
    color: #FFD700;
}

.border-gold {
    border-color: #FFD700;
}

.bg-gold {
    background-color: #FFD700;
}