.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Default (desktop) layout */
.main-content {
    display: flex;
    align-items: flex-start;
  }

  .logo-section {
    flex: 0 0 33%; /* The logo will take up 1/3 of the container width on desktop */
    /* margin-right: 20px; /* Space between logo and content */
  }
  
  .logo {
    max-width: 100%; /* Ensure the logo doesn't overflow its container */
  }
  
  .content-section {
    flex-grow: 1;
  }

/* Desktop layout: make the logo 1/3 smaller */
@media (min-width: 1024px) {
    .logo {
      /* width: 10%; /* Make the logo 1/3 smaller on desktop */
      max-width: none; /* Ensure no conflicting size limits */
    }
  }
  
  
  /* Mobile layout (for screens smaller than 768px) */
  @media (max-width: 1024px) {
    .main-content {
      flex-direction: column;
      align-items: center; /* Center the logo and text */
    }
  
    .logo-section {
      width: auto; /* Remove the 1/3 constraint on mobile */
      margin-right: 0; /* Remove right margin */
      /* margin-bottom: 15px; /* Space between logo and content */
      text-align: center; /* Center the logo */
    }
  
    .logo {
      max-width: 80%; /* Resize the logo for mobile */
    }
  
    .content-section {
      text-align: center; /* Center the content */
    }
  }

/* Tagline Section */
.tagline-section {
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.8em;
    color: #ff1493; /* Pink color for tagline */
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

/* Links Section */
.links-section {
    margin-top: 50px;
}

.links-section ul {
    list-style-type: none;
    padding: 0;
}

.links-section li {
    margin: 10px 0;
}

/* Styling for Links */
.links-section a,
.about-section a {
    text-decoration: none;
    font-size: 1.2em;
    color: #007bff; /* Blue color for links */
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.links-section a:hover,
.about-section a:hover {
    background-color: #ff1493; /* Pink background on hover */
    color: #fff; /* White text on hover */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Courts Image Styling */
.courts-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-logo {
    width: 24px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
}

footer nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  footer nav ul li {
    margin: 0 10px;
  }
  
  footer nav ul li a {
    text-decoration: none;
    font-size: 1.2em;
    color: #007bff; /* Blue color for links */
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  footer nav ul li a:hover {
    background-color: #ff1493; /* Pink background on hover */
    color: #fff; /* White text on hover */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  