body {
    background-color: rgb(15, 15, 15);
}
/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
  }
  
  /* Optional active section styling */
  section.active {
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0.8; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
/* SECTION STYLING */
.highlights-section {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  
  .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #FF6B02;
    position: relative;
    margin-top: 50px;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem auto 0;
  }
  
  /* CAROUSEL CONTAINER */
  .glow-carousel {
    overflow: hidden; /* hides overflow edges */
    padding: 0; /* remove side padding that causes cutoff */
  }
  
  .carousel-viewport {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 1rem; /* slight inner spacing */
  }

/* Registration Section */
.tournament-registration {
    padding: 4rem 0;
  }
  
  .container-registration {
    max-width: 800px;
    height: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Card Styling */
  .registration-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .card-header {
    padding: 2.5rem;
    text-align: center;
    color: rgb(15, 15, 15);
  }
  
  .header-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .header-content h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
  }
  
  .location {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  
  /* Form Styling */
  .registration-form {
    padding: 2.5rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .form-section {
    margin-bottom: 1.5rem;
  }
  
  .form-section h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    outline: none;
  }
  
  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .full-width {
    grid-column: span 2;
  }
  
  /* Terms Checkbox */
  .terms-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2rem 0;
  }
  
  .terms-group input {
    min-width: 18px;
    min-height: 18px;
  }
  
  .terms-group label {
    font-size: 0.9rem;
  }
  
  .terms-group a {
    color: #ff8c00;
    text-decoration: none;
  }
  
  .terms-group a:hover {
    text-decoration: underline;
  }
  
  /* Submit Button */
  .submit-container {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .submit-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  }
  
  .submit-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  }
  
  .submit-btn:active {
    transform: translateY(0);
  }
  
  /* Loading Spinner */
  .loading-spinner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
  }
  
  .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 140, 0, 0.2);
    border-top-color: #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Success Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
  }
  
  .modal-content i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
  }
  
  .modal-content h3 {
    margin: 0 0 1rem;
    color: #333;
  }
  
  .modal-close {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    cursor: pointer;
    font-weight: 600;
  }
  .map{
    margin-top: -20vw !important;
  }

  .map-container {
    width: 100%;
    align-items: center;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
    
    .full-width {
      grid-column: span 1;
    }
    
    .card-header {
      padding: 1.5rem;
    }
    
    .registration-form {
      padding: 1.5rem;
    }
  }
  
  .workshop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .workshop-box {
    border: 2px solid #FF6600;
    border-radius: 15px;
    width: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    background-image: 
    linear-gradient(to right, #FF6600 0.001px, transparent 0.7px),
    linear-gradient(to bottom, #FF6600 0.001px, transparent 0.7px);
    background-size: 30px 30px;
  }
  
  .workshop-box:hover {
    transform: translateY(-5px);
  }
  
  .workshop-icon {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    display: flex;
  }
  
  .workshop-title {
    width: 100%;
    height: 50px;
    text-align: center;
    border-radius: 0 0 12px 12px;
    font-size: 2rem;
    font-weight: 600;
    color: #151515;
    background-color: #FF6600;
  }
  @media screen and (min-width:700px) {
    .map-image {
      width: 70%;
    }
    .proj-image {
      width: 60%;
    }
  }

.events {
  margin: 0 auto;
}
  .event-box {
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FF6B02, #FF6B02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 1rem auto;

  }
  
  .event-icon {
    flex-shrink: 0;
  }
  
  .event-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .event-title {
    font-size: 1.5rem;
    color: #151515;
    margin: 0;
    font-weight: 700;
  }
  
  .event-time,
  .event-lineup {
    font-size: 1rem;
    color: #151515;
    margin: 0;
  }

  .event-lineup{
    font-weight: 800;
  }
  
  @media (max-width: 576px) {
    .event-box {
      width: 80%;
      flex-direction: column;
      text-align: center;
    }
  
    .event-icon {
      margin-bottom: 0.5rem;
    }
  }
  .dj-svg {
    display: flex;
    margin-bottom: -35px !important;
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto;
  }
  .food-beer{
    margin-top: 50px !important;
    margin-bottom: -35px !important;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto;
  }
  .food-icon {
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto;
  }
  .beer-icon {
    max-width: 300px;
    max-height: 200px;
    margin: 0 auto;
  }
  .event-link {
    text-decoration: none;
    color: #FF6B02;
    font-weight: 600;
    transition: color 0.3s;
  }
  .timeline-wrapper {
    position: relative;
    z-index: 1;
  }
 
  
.btn-orange {
  background: rgba(255,107,2,0.2);
  color: rgb(255, 107, 2);
  border: 2px solid rgb(255, 107, 2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.workshop-box {
  perspective: 1000px;
  cursor: pointer;
}

.workshop-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.workshop-box.flipped .workshop-inner {
  transform: rotateY(180deg);
}

.workshop-front, .workshop-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.workshop-back {
  transform: rotateY(180deg);
  background-color: #FF6B02;
  color: #151515;
  padding: 20px;
  box-sizing: border-box;
}

.workshop-description {
  font-size: 24px;
  text-align: center;
}

/* Responsive Design */
.event-popup {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  animation: slideIn 0.4s ease-out forwards;
  max-width: 90%;
}

.popup-content {
  background: #FF6600;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.2);
}

.popup-message {
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.popup-button {
  background: #151515;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  min-width: 80px;
}

.popup-button:hover {
  background: #333;
  transform: translateY(-1px);
}


@keyframes slideIn {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .event-popup {
    bottom: 10px;
    right: 10px;
    max-width: 85%;
  }
  
  .popup-content {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .popup-message {
    font-size: 13px;
  }
  
  .popup-button {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 70px;
  }
  
  .popup-close {
    width: 18px;
    height: 18px;
    font-size: 11px;
    top: -5px;
    right: -5px;
  }
}
/* Container for event and video */
.event-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Optional: Control icon size */
.event-icon {
  flex-shrink: 0;
}

/* Event details spacing */
.event-details {
  flex-grow: 1;
}

.lineup-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
/* Style and center video */
#lineup {
  display: flex;
  margin: 0 auto; /* Center horizontally and add spacing below */
  width: 100%; /* Adjust size as needed */
  max-width: 500px; /* Optional: prevent it from being too wide */
  border-radius: 12px; /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Optional: visual polish */
  
}
