/* ===== MAIN STYLES FOR RESERV BAR ===== */

/* ===== VARIABLES ===== */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d3557;
  --accent-color: #f1c40f;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --success-color: #2ecc71;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .reserve-now {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary, .reserve-now {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover, .reserve-now:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.reserve-now {
  padding: 10px 20px;
  font-size: 1rem;
}

/* ===== HEADER ===== */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.logo img {
  height: 50px;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  font-weight: 600;
  position: relative;
  color: var(--secondary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after, 
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5f5f5;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li {
  margin-right: 10px;
  position: relative;
}

.breadcrumbs li:not(:last-child)::after {
  content: '>';
  margin-left: 10px;
  color: var(--gray-color);
}

.breadcrumbs a {
  color: var(--secondary-color);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs li:last-child {
  color: var(--gray-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 40px 0;
  text-align: left;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  color: var(--secondary-color);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.about-content img {
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.what-we-offer {
  margin-top: 50px;
}

.what-we-offer h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.offering {
  margin-bottom: 40px;
}

.offering h4 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.offering p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* ===== INTRO SECTION ===== */
.intro {
  padding: 80px 0;
  text-align: center;
}

.intro h2 {
  max-width: 800px;
  margin: 0 auto 40px;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.advantages h3 {
  text-align: center;
  margin-bottom: 50px;
}

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

.advantage-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.advantage-card h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.conclusion {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion .btn-secondary {
  margin: 0 10px 10px 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-section h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HOURS SECTION ===== */
.hours-section {
  padding: 80px 0;
}

.hours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hours-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-list {
  margin: 30px 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-list li:last-child {
  border-bottom: none;
}

.days {
  font-weight: 600;
  color: var(--secondary-color);
}

.time {
  color: var(--primary-color);
  font-weight: 600;
}

.hours-note {
  margin: 30px 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hours-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== SPORTS BETTING PAGE STYLES ===== */

/* Betting Intro */
.betting-intro {
  padding: 80px 0;
}

.betting-intro h2 {
  text-align: center;
  margin-bottom: 50px;
}

.betting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.betting-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.betting-text h3 {
  margin-bottom: 20px;
}

.betting-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Odds Section */
.odds-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.odds-section h3 {
  text-align: center;
  margin-bottom: 50px;
}

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

.odds-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.odds-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.odds-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.odds-card h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.odds-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* How to Bet Section */
.how-to-bet {
  padding: 80px 0;
}

.how-to-bet h3 {
  text-align: center;
  margin-bottom: 50px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-content h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.betting-conclusion {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.betting-conclusion p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.betting-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== PRIVACY POLICY & TERMS PAGE STYLES ===== */

.privacy-content,
.terms-content {
  padding: 80px 0;
}

.privacy-wrapper,
.terms-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro,
.terms-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.privacy-section,
.terms-section {
  margin-bottom: 40px;
}

.privacy-section h3,
.terms-section h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-list,
.terms-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-list li,
.terms-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}

.privacy-list li:before,
.terms-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.privacy-section p,
.terms-section p {
  line-height: 1.8;
}

.privacy-section a,
.terms-section a {
  color: var(--primary-color);
  font-weight: 600;
}

.privacy-section a:hover,
.terms-section a:hover {
  text-decoration: underline;
}

.privacy-footer,
.terms-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 30px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 30px;
}

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-text p {
  margin-bottom: 0;
}

.contact-social {
  margin-top: 30px;
}

.contact-social h4 {
  margin-bottom: 15px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.contact-form h3 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(29, 53, 87, 0.2);
}

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

.form-submit {
  margin-top: 10px;
}

/* ===== MENU PAGE STYLES ===== */

.menu-section {
  padding: 80px 0;
}

.menu-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.menu-tab {
  padding: 10px 20px;
  background-color: white;
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  color: var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  background-color: var(--secondary-color);
  color: white;
}

.menu-category {
  margin-bottom: 60px;
}

.category-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.menu-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 20px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.menu-item-title {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.menu-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.menu-item-description {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-tag {
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-tag.vegetarian {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.menu-tag.spicy {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.menu-tag.popular {
  background-color: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

.menu-tag.fitness {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

/* ===== EVENTS PAGE STYLES ===== */

.events-section {
  padding: 80px 0;
}

.events-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.event-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}

.event-date .day {
  font-size: 1.5rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.event-meta-item i {
  color: var(--primary-color);
  margin-right: 5px;
}

.event-description {
  margin-bottom: 20px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-price {
  font-weight: 700;
  color: var(--secondary-color);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 20px;
}

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

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-nav h3, .footer-hours h3, .footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav h3::after, .footer-hours h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav ul li, .footer-hours ul li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact .btn-secondary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  margin-top: 15px;
}

.footer-contact .btn-secondary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 120px 0;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .about-content,
  .hours-wrapper,
  .betting-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image,
  .hours-image,
  .betting-image {
    order: -1;
  }
  
  .odds-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    position: relative;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 0 0 15px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  .intro,
  .advantages,
  .about-intro,
  .offerings,
  .hours-section,
  .team-section,
  .betting-intro,
  .odds-section,
  .how-to-bet,
  .popular-sports,
  .live-odds,
  .privacy-content,
  .terms-content,
  .contact-section,
  .menu-section,
  .events-section {
    padding: 60px 0;
  }
  
  .cta-section,
  .betting-cta {
    padding: 80px 0;
  }
  
  .betting-disclaimer {
    padding: 30px 0 60px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p:first-child {
    margin-bottom: 10px;
  }
  
  .hours-list li {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member,
  .sport-card {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .betting-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .menu-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .menu-tab {
    width: 100%;
    text-align: center;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-light {
  background-color: #f5f5f5;
}

.bg-dark {
  background-color: var(--dark-color);
  color: white;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}