body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* light grey background */
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
  .hero1-welcome {
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%);
    padding: 30px 20px;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #0b4d0b;
  }
  
  .welcome-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  
  .welcome-logo-left {
    flex: 0 0 auto;
  }
  
  .welcome-text {
    flex: 1;
    text-align: center;
  }
  
  .welcome-logos-right {
    flex: 0 0 auto;
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .welcome-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: contain;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: white;
  }
  
  .welcome-logo:hover {
    transform: scale(1.05);
  }
  
  .hero1-welcome h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
  }
  
  .hero1-image {
    width: 100%;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #0b4d0b;
    background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%);
    padding: 10px;
    overflow: hidden;
  }
  
  .hero1-bg-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .hero {
    position: relative;
    width: 100%;
    height: 70vh; /* increased height to give Wexford image more space */
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #0b4d0b; /* club green border */
    background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%); /* green gradient background */
  }
  
  .hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
  }
  
  .hero-left {
    flex: 0.55; /* 55% width for club dev image - slightly more space */
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .hero-right {
    flex: 0.45; /* 45% width for wexford image - slightly less space */
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  

  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* zooms in slightly on the image */
    border-radius: 10px;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* subtle overlay */
    padding: 20px 40px;
    border-radius: 10px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #0a5909;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    white-space: nowrap;
    min-width: fit-content;
    display: inline-block;
  }
  
  /* Header Styles */
  .header {
    background-color: #0b4d0b; /* dark green like image */
    padding: 25px 40px;
    color: white;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .club-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
  }

  .club-name {
    flex-grow: 1;
    text-align: left;
    margin-left: 30px;
  }

  .club-name h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .club-name p {
    font-size: 1.1rem;
    margin: 8px 0 0;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
  }

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

  .social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* makes them white */
    transition: transform 0.2s ease;
  }

  .social-icons img:hover {
    transform: scale(1.15);
  }
  
  /* Navigation Bar */
  nav {
    background-color: yellow; /* Lighter green */
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: relative;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  nav a {
    color: #0a5909;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Mobile Menu Toggle Button - Hidden by default */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background-color: rgba(255, 255, 0, 0.1);
    border-radius: 4px;
  }
  
  .mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background-color: #0a5909;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Mobile Navigation Overlay - Hidden by default */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
  }
  
  .mobile-nav-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .mobile-nav-content {
    background-color: yellow;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    max-height: 100vh;
    padding: 80px 25px 50px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1001;
    display: block;
    visibility: visible;
    opacity: 1;
    scrollbar-width: thin;
    scrollbar-color: #0a5909 rgba(255, 255, 0, 0.3);
    box-sizing: border-box;
  }
  
  .mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
  }
  
  .mobile-nav-content a {
    display: block;
    color: #0a5909;
    text-decoration: none;
    padding: 18px 0;
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(10, 89, 9, 0.3);
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.4;
  }
  
  .mobile-nav-content a:hover {
    background-color: rgba(10, 89, 9, 0.1);
    padding-left: 10px;
  }
  
  .mobile-nav-content a:last-child {
    border-bottom: none;
    margin-bottom: 20px;
  }
  
  .mobile-nav-title {
    color: #0a5909;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 20px 0 10px 0;
    border-bottom: 2px solid #0a5909;
    text-align: center;
  }
  
  /* Prevent body scroll when menu is open */
  body.nav-open {
    overflow: hidden;
  }
  
  /* Force mobile menu visibility when active */
  .mobile-nav-overlay.active .mobile-nav-content * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav-content a {
    color: #0a5909 !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav-title {
    color: #0a5909 !important;
  }
  
  /* Custom scrollbar for mobile nav */
  .mobile-nav-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .mobile-nav-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 0, 0.3);
    border-radius: 3px;
  }
  
  .mobile-nav-content::-webkit-scrollbar-thumb {
    background: #0a5909;
    border-radius: 3px;
  }
  
  .mobile-nav-content::-webkit-scrollbar-thumb:hover {
    background: #0d6b0c;
  }
  
  /* Ensure mobile nav content is properly scrollable */
  .mobile-nav-overlay.active .mobile-nav-content {
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  /* Placeholder body */
  .content {
    padding: 40px;
    text-align: center;
  }
  .about-container {
    display: flex;
    flex-wrap: wrap;       /* allows stacking on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .about-section {
    flex: 1 1 500px;       /* each takes min 500px width */
    max-width: 600px;
    display: flex;
    justify-content: center;
  }
  /* Contact Page Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    margin: 2rem;
  }
  
  /* Sidebar */
  .contact-sidebar {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .contact-sidebar h3 {
    margin-bottom: 1rem;
    color: #0a5909;
  }
  
  .contact-sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-sidebar ul li {
    margin: 0.5rem 0;
  }
  
  .contact-sidebar a {
    text-decoration: none;
    color: #0a5909;
    font-weight: bold;
  }
  
  /* Hide mobile social section on desktop */
  .mobile-social-section {
    display: none;
  }
  
  .pitch-box {
    display: inline-block;
    background: #0a5909;
    color: #fff;
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  /* Main Content */
  .contact-main {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-main h2 {
    margin-bottom: 1rem;
    border-bottom: 2px solid #0a5909;
    display: inline-block;
    padding-bottom: 0.3rem;
    color: #0a5909;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
  }
  
  table th, table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  table th {
    background: #0a5909;
    color: #fff;
  }
  /* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: yellow;
    min-width: 160px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 1000;
  }
  
  .dropdown-content a {
    color: #0a5909;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-weight: normal;
  }
  
  .dropdown-content a:hover {
    color: yellow;
    background-color:#0a5909;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown > a {
    font-weight: bold;
    cursor: pointer;
  }
/* Section Styling */
.section {
    margin: 40px auto;
    padding: 20px;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
  
  .section h1 {
    color: #0a5909;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Map */
  .map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
/* Facilities Layout */
.facility-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .facility {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .facility:nth-child(even) {
    flex-direction: row-reverse; /* alternates image and text */
  }
  
  .facility img {
    width: 45%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  }
  
  .facility-text {
    width: 55%;
  }
  
  .facility-text h2 {
    margin-top: 0;
    color: #0a5909;
  }
  
  .facility-text p {
    line-height: 1.6;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .facility {
      flex-direction: column !important; /* stack on small screens */
    }
  
    .facility img,
    .facility-text {
      width: 100%;
    }
  }
/* Shared container style for text, video, and slider */
.section-container {
    max-width: 900px; /* Uniform width */
    margin: 40px auto;
    padding: 0 20px;
}

/* Patronage Text Styling */
.patronage-text {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    line-height: 1.6;
    text-align: center;
}

.patronage-text h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #006400; /* club green */
}

.patronage-text h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.patronage-text h4 {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #222;
}

.patronage-text h5 {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #555;
}

.patronage-text p {
    margin: 10px 0;
}

.patronage-text ul {
    margin: 10px auto 20px auto;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.patronage-text ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.patronage-text .contact-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.patronage-text .contact-list li {
  margin-bottom: 6px;
}

.patronage-text .contact-list a {
  color: #0a5909;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.patronage-text .contact-list a:hover {
  color: #0d6b0c;
  text-decoration: underline;
}

/* Video Section */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Slider Section */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
    aspect-ratio: 1 / 1.414;
}

.hero-slider .slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.hero-slider .slide {
    min-width: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Arrows */
.hero-slider .prev,
.hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
    background: rgba(0,0,0,0.8);
}

.hero-slider .prev { left: 15px; }
.hero-slider .next { right: 15px; }

/* Play/Pause and Fullscreen buttons */
.hero-slider .play-pause,
.hero-slider .fullscreen {
    position: absolute;
    top: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    z-index: 10;
    transition: background 0.3s ease;
}

.hero-slider .play-pause {
    right: 60px;
}

.hero-slider .fullscreen {
    right: 15px;
}

.hero-slider .play-pause:hover,
.hero-slider .fullscreen:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Fullscreen styles */
.hero-slider:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: black;
}

.hero-slider:fullscreen .slides {
    width: 100vw !important;
    height: 100vh !important;
}

.hero-slider:fullscreen .slide {
    width: 100vw !important;
    height: 100vh !important;
}

.hero-slider:fullscreen .slide img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Webkit fullscreen support */
.hero-slider:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: black;
}

.hero-slider:-webkit-full-screen .slides {
    width: 100vw !important;
    height: 100vh !important;
}

.hero-slider:-webkit-full-screen .slide {
    width: 100vw !important;
    height: 100vh !important;
}

.hero-slider:-webkit-full-screen .slide img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Mobile styles for slideshow controls */
@media (max-width: 768px) {
    .hero-slider .play-pause,
    .hero-slider .fullscreen {
        top: 10px;
        padding: 8px;
        font-size: 14px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .hero-slider .play-pause {
        right: 50px;
    }
    
    .hero-slider .fullscreen {
        right: 10px;
    }
    
    /* Mobile fullscreen specific styles */
    .hero-slider:fullscreen,
    .hero-slider:-webkit-full-screen,
    .hero-slider:-moz-full-screen,
    .hero-slider:-ms-fullscreen {
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: black !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 9999 !important;
    }
    
    .hero-slider:fullscreen .slides,
    .hero-slider:-webkit-full-screen .slides,
    .hero-slider:-moz-full-screen .slides,
    .hero-slider:-ms-fullscreen .slides {
        width: 100vw !important;
        height: 100vh !important;
    }
    
    .hero-slider:fullscreen .slide,
    .hero-slider:-webkit-full-screen .slide,
    .hero-slider:-moz-full-screen .slide,
    .hero-slider:-ms-fullscreen .slide {
        width: 100vw !important;
        height: 100vh !important;
    }
    
    .hero-slider:fullscreen .slide img,
    .hero-slider:-webkit-full-screen .slide img,
    .hero-slider:-moz-full-screen .slide img,
    .hero-slider:-ms-fullscreen .slide img {
        width: 100vw !important;
        height: 100vh !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* Ensure fullscreen controls are visible on mobile */
    .hero-slider:fullscreen .play-pause,
    .hero-slider:fullscreen .fullscreen,
    .hero-slider:-webkit-full-screen .play-pause,
    .hero-slider:-webkit-full-screen .fullscreen,
    .hero-slider:-moz-full-screen .play-pause,
    .hero-slider:-moz-full-screen .fullscreen,
    .hero-slider:-ms-fullscreen .play-pause,
    .hero-slider:-ms-fullscreen .fullscreen {
        position: absolute !important;
        z-index: 10000 !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        border: none !important;
        padding: 12px !important;
        cursor: pointer !important;
        border-radius: 5px !important;
        font-size: 16px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 20px 25px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .club-logo img {
        width: 80px;
        height: 80px;
    }
    
    .club-name {
        margin-left: 0;
        text-align: center;
    }
    
    .club-name h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .club-name p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons img {
        width: 28px;
        height: 28px;
    }
    
    
    /* Navigation adjustments */
    nav {
        padding: 15px 0;
        justify-content: flex-end;
        min-height: 60px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        padding: 10px;
        right: 10px;
    }
    
    .mobile-menu-toggle span {
        width: 32px;
        height: 5px;
        margin: 5px 0;
    }
    
    /* Hide all desktop nav elements on mobile */
    nav .dropdown {
        display: none !important;
    }
    
    nav a {
        display: none !important;
    }
    
    /* Ensure mobile overlay is properly positioned */
    .mobile-nav-overlay {
        display: none !important;
    }
    
    .mobile-nav-overlay.active {
        display: block !important;
    }
    
    /* Contact page mobile layout */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem;
    }
    
    .contact-sidebar {
        order: 2;
        padding: 1rem;
        display: none; /* Hide sidebar on mobile */
    }
    
    .contact-main {
        order: 1;
        padding: 1rem;
    }
    
    /* Show mobile social section on mobile */
    .mobile-social-section {
        display: block;
        margin: 20px 0;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
        border-left: 4px solid #0a5909;
    }
    
    .mobile-social-section h3 {
        color: #0a5909;
        margin-bottom: 15px;
        font-size: 1.2em;
    }
    
    .social-links-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-links-mobile a {
        background: #0a5909;
        color: white;
        padding: 8px 12px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background 0.3s ease;
    }
    
    .social-links-mobile a:hover {
        background: #0d6b0c;
    }
    
    /* Enhanced table responsiveness for mobile */
    table {
        font-size: 0.8em;
        width: 100%;
        display: block;
        overflow-x: auto;
        white-space: normal;
        -webkit-overflow-scrolling: touch;
    }
    
    table th, table td {
        padding: 0.5rem 0.3rem;
        min-width: 80px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Make table headers more compact on mobile */
    table th {
        font-size: 0.75em;
        padding: 0.4rem 0.2rem;
        white-space: normal;
    }
    
    /* Make table cells more compact */
    table td {
        font-size: 0.7em;
        padding: 0.4rem 0.2rem;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure clickable links are touch-friendly */
    table a {
        display: inline-block;
        padding: 2px 4px;
        min-height: 20px;
        line-height: 1.2;
        word-break: break-all;
        white-space: normal;
    }
    
    /* Map responsiveness */
    .map-container iframe {
        width: 100% !important;
        height: 250px !important;
    }
    
    /* Hero welcome text for mobile */
    .hero1-welcome {
      padding: 25px 20px;
      margin: 8px 0;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .welcome-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
    
    .welcome-logo-left {
      order: 1;
    }
    
    .welcome-text {
      order: 2;
    }
    
    .welcome-logos-right {
      order: 3;
      justify-content: center;
    }
    
    .welcome-logo {
      width: 60px;
      height: 60px;
    }
    
    .hero1-welcome h2 {
      font-size: 1.8rem; /* smaller text for mobile */
    }
    
    /* Hero image for mobile */
    .hero1-image {
        margin: 8px 0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .hero1-container {
        gap: 8px;
        padding: 8px;
    }
    
    .hero1-left, .hero1-right {
        border-radius: 6px;
    }
    
    .hero {
        height: 50vh; /* increased for mobile to give Wexford image more space */
        max-height: 400px; /* increased for better fit */
        margin: 15px 0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 2px solid #0b4d0b; /* club green border */
        background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%); /* green gradient background */
    }
    
    .hero-container {
        gap: 8px;
        padding: 8px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* zooms in slightly on the image */
        object-position: center; /* centers the image content */
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure hero containers don't exceed screen width */
    .hero1, .hero {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    /* Hero text adjustments for mobile */
    .hero-text {
        padding: 12px 18px;
        margin: 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    /* Button mobile adjustments */
    .btn {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 8px 16px;
        min-width: fit-content;
    }
    
    /* Purchase button mobile */
    .purchase-btn {
        max-width: 90%;
        padding: 15px 20px;
        font-size: 1.1em;
    }
    
    /* Gallery page iframe mobile */
    body iframe {
        height: 400px !important;
    }
    
    /* Content containers mobile */
    .content-container {
        padding: 15px;
    }
    
    /* Patronage text mobile adjustments */
    .patronage-text {
        padding: 20px 15px;
    }
    
    .patronage-text h2 {
        font-size: 1.5rem;
    }
    
    .patronage-text h3 {
        font-size: 1.3rem;
    }
    
    .patronage-text h4 {
        font-size: 1.2rem;
    }
    
    /* Section mobile adjustments */
    .section {
        margin: 20px auto;
        padding: 15px;
    }
    
    .section h1 {
        font-size: 1.8rem;
    }
}

/* Tablet and smaller desktop adjustments */
@media (max-width: 900px) {
    .section-container {
        padding: 0 15px;
    }

    .video-wrapper,
    .hero-slider {
        aspect-ratio: 16 / 9;
        margin-top: 25px;
    }
    
    /* Contact page tablet layout */
    .contact-container {
        grid-template-columns: 1fr 2fr;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    /* Header for very small screens */
    .header {
        padding: 15px 20px;
    }
    
    .header-container {
        gap: 15px;
    }
    
    .club-logo img {
        width: 70px;
        height: 70px;
    }
    
    .club-name h1 {
        font-size: 1.8rem;
        letter-spacing: 0.3px;
    }
    
    .club-name p {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons img {
        width: 24px;
        height: 24px;
    }
    
    
    /* Navigation for very small screens */
    nav {
        justify-content: flex-end;
        padding: 12px 0;
        min-height: 55px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        padding: 8px;
        right: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 28px;
        height: 4px;
        margin: 4px 0;
    }
    
    nav a {
        display: none !important;
    }
    
    nav .dropdown {
        display: none !important;
    }
    
    /* Hero welcome text for small screens */
    .hero1-welcome {
      padding: 20px 15px;
      margin: 6px 0;
      border-radius: 6px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    
    .welcome-content {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
    
    .welcome-logo {
      width: 50px;
      height: 50px;
    }
    
    .hero1-welcome h2 {
      font-size: 1.4rem; /* smaller text for small screens */
    }
    
    /* Hero image for small screens */
    .hero1-image {
        margin: 6px 0;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    
    .hero1-container {
        gap: 6px;
        padding: 6px;
    }
    
    .hero1-left, .hero1-right {
        border-radius: 4px;
    }
    
    .hero {
        height: 40vh; /* increased for small screens to give Wexford image more space */
        max-height: 320px; /* increased for better fit */
        margin: 10px 0;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        border: 2px solid #0b4d0b; /* club green border */
        background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%); /* green gradient background */
    }
    
    .hero-container {
        gap: 6px;
        padding: 6px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* zooms in slightly on the image */
        object-position: center; /* centers the image content */
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure hero containers don't exceed screen width on very small screens */
    .hero1, .hero {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    /* Hero text for very small screens */
    .hero-text {
        padding: 8px 12px;
        margin: 8px;
        max-width: calc(100% - 16px);
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    
    .hero-text p {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    /* Button very small screen adjustments */
    .btn {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 6px 12px;
        min-width: fit-content;
    }
    
    /* Tables for very small screens */
    /* Enhanced table responsiveness for very small screens */
    table {
        font-size: 0.7em;
        width: 100%;
        display: block;
        overflow-x: auto;
        white-space: normal;
        -webkit-overflow-scrolling: touch;
    }
    
    table th, table td {
        padding: 0.3rem 0.2rem;
        min-width: 70px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Make table headers even more compact on very small screens */
    table th {
        font-size: 0.65em;
        padding: 0.3rem 0.1rem;
        white-space: normal;
    }
    
    /* Make table cells even more compact */
    table td {
        font-size: 0.6em;
        padding: 0.3rem 0.1rem;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure clickable links are touch-friendly on small screens */
    table a {
        display: inline-block;
        padding: 1px 2px;
        min-height: 18px;
        line-height: 1.1;
        font-size: 0.65em;
        word-break: break-all;
        white-space: normal;
    }
    
    /* Gallery iframe for very small screens */
    body iframe {
        height: 300px !important;
    }
    
    /* Purchase button for very small screens */
    .purchase-btn {
        padding: 12px 15px;
        font-size: 1em;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .top-header {
        padding: 10px 8px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    nav {
        padding: 12px 0;
        min-height: 50px;
    }
    
    .club-center {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 0;
        flex: 1;
        justify-content: center;
    }
    
    .club-left, .club-right {
        font-size: 1em;
    }
    
    .club-logo img {
        height: 50px;
        width: 50px;
    }
    
    .social-icons {
        position: static;
        margin-top: 0;
        gap: 6px;
    }
    
    .social-icons img {
        width: 20px;
        height: 20px;
    }
    
    /* Hero welcome text for mobile landscape */
    .hero1-welcome {
      padding: 18px 15px;
      margin: 5px 0;
      border-radius: 6px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    
    .welcome-content {
      flex-direction: row;
      gap: 15px;
      text-align: center;
    }
    
    .welcome-logo {
      width: 45px;
      height: 45px;
    }
    
    .hero1-welcome h2 {
      font-size: 1.2rem; /* smaller text for mobile landscape */
    }
    
    /* Hero image for mobile landscape */
    .hero1-image {
        margin: 5px 0;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Hero text for mobile landscape */
    .hero-text {
        padding: 6px 10px;
        margin: 6px;
        max-width: calc(100% - 12px);
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .hero-text h1 {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    /* Button mobile landscape adjustments */
    .btn {
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 5px 10px;
        min-width: fit-content;
    }
    
    .hero1-container {
        gap: 6px;
        padding: 6px;
    }
    
    .hero1-left, .hero1-right {
        border-radius: 4px;
    }
    
    .hero {
        height: 35vh; /* increased for very small screens to give Wexford image more space */
        max-height: 280px; /* increased for better fit */
        margin: 8px 0;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        border: 2px solid #0b4d0b; /* club green border */
        background: linear-gradient(135deg, #0b4d0b 0%, #1a6b1a 100%); /* green gradient background */
    }
    
    .hero-container {
        gap: 4px;
        padding: 4px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .header-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .club-logo img {
        width: 60px;
        height: 60px;
    }
    
    .club-name {
        margin-left: 15px;
        text-align: left;
    }
    
    .club-name h1 {
        font-size: 1.4rem;
        letter-spacing: 0.2px;
    }
    
    .club-name p {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons img {
        width: 22px;
        height: 22px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* zooms in slightly on the image */
        object-position: center; /* centers the image content */
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure hero containers don't exceed screen width in landscape */
    .hero1, .hero {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    /* Navigation for mobile landscape */
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        padding: 8px;
        right: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 28px;
        height: 4px;
        margin: 4px 0;
    }
    
    nav a {
        display: none !important;
    }
    
    nav .dropdown {
        display: none !important;
    }
}
/* Standard content container */
.content-container {
  max-width: 1100px;   /* Standard size */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Club History */
.club-history {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

/* Teams Hero Slider */
.heroteams-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.heroteams-slider .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.heroteams-slider .slide {
  min-width: 100%;
  box-sizing: border-box;
}

.heroteams-slider img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Slider buttons */
.heroteams-slider .prev,
.heroteams-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.heroteams-slider .prev:hover,
.heroteams-slider .next:hover {
  background: rgba(0,0,0,0.8);
}

.heroteams-slider .prev {
  left: 10px;
}

.heroteams-slider .next {
  right: 10px;
}
/* Side Menu Button */
/* Container for top-right button */
.page-header-actions {
  display: flex;
  justify-content: flex-end;
  margin: 30px auto;
  max-width: 1200px;  /* match your content width */
  padding-right: 20px;
}

/* Button styling */
.purchase-btn {
  background: #006400;  /* club green */
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #004b00;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background .2s ease, transform .2s ease;
  display: block;
  text-align: center;
  margin: 20px auto;
  max-width: 300px;
}

.purchase-btn:hover {
  background: #228B22;
  transform: translateY(-2px);
}

/* Teastas Omóis Recipients Styling */
.teastas-recipients {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  margin: 20px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid #0a5909;
}

.recipient-year {
  font-weight: bold;
  color: #0a5909;
  text-align: right;
  min-width: 60px;
}

.recipient-name {
  color: #333;
  font-weight: 500;
}

/* Mobile responsiveness for Teastas recipients */
@media (max-width: 768px) {
  .teastas-recipients {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px;
  }
  
  .recipient-year {
    text-align: left;
    font-size: 0.9em;
    margin-bottom: 5px;
  }
  
  .recipient-name {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
}

/* Core Values List Styling */
.core-values-list {
  list-style: none !important;
  padding: 0;
  margin: 20px 0;
  padding-left: 0;
}

.core-values-list li {
  color: black;
  padding: 8px 0;
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
  padding-left: 25px;
  list-style: none !important;
  list-style-type: none !important;
}

.core-values-list li::before {
  content: "•";
  color: #0a5909;
  font-weight: bold;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile responsiveness for core values */
@media (max-width: 768px) {
  .core-values-list li {
    font-size: 1em;
    padding: 6px 0;
    padding-left: 25px;
  }
  
  .core-values-list li::before {
    font-size: 1.3em;
  }
}

/* Colin Byrne Bursary Page Styling */
.bursary-content {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  padding: 30px;
  line-height: 1.6;
  text-align: center;
}

.bursary-content h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0a5909;
}

.bursary-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0a5909;
}

.bursary-content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #0a5909;
  text-align: left;
}

.bursary-content p {
  margin: 15px 0;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}

/* Bursary Images Section */
.bursary-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.colin-image, .logo-image {
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.standalone-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

.image-caption {
  margin-top: 10px;
  font-weight: bold;
  color: #0a5909;
  font-size: 1.1rem;
}

/* Bursary Info Section */
.bursary-info {
  text-align: left;
  margin: 30px 0;
}

/* Bursary Slideshow */
.bursary-slideshow {
  margin-top: 40px;
}

.bursary-slideshow h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #0a5909;
  margin-bottom: 20px;
}

.cb-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
  aspect-ratio: 16 / 9;
}

.cb-slider .cb-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.cb-slider .cb-slide {
  min-width: 100%;
}

.cb-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CB Slider Controls */
.cb-slider .cb-prev,
.cb-slider .cb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.cb-slider .cb-prev:hover,
.cb-slider .cb-next:hover {
  background: rgba(0,0,0,0.8);
}

.cb-slider .cb-prev { left: 15px; }
.cb-slider .cb-next { right: 15px; }

/* CB Play/Pause and Fullscreen buttons */
.cb-slider .cb-play-pause,
.cb-slider .cb-fullscreen {
  position: absolute;
  top: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  z-index: 10;
  transition: background 0.3s ease;
}

.cb-slider .cb-play-pause {
  right: 60px;
}

.cb-slider .cb-fullscreen {
  right: 15px;
}

.cb-slider .cb-play-pause:hover,
.cb-slider .cb-fullscreen:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* CB Fullscreen styles */
.cb-slider:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: black;
}

.cb-slider:fullscreen .cb-slides {
  width: 100vw !important;
  height: 100vh !important;
}

.cb-slider:fullscreen .cb-slide {
  width: 100vw !important;
  height: 100vh !important;
}

.cb-slider:fullscreen .cb-slide img {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Webkit fullscreen support for CB slider */
.cb-slider:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: black;
}

.cb-slider:-webkit-full-screen .cb-slides {
  width: 100vw !important;
  height: 100vh !important;
}

.cb-slider:-webkit-full-screen .cb-slide {
  width: 100vw !important;
  height: 100vh !important;
}

.cb-slider:-webkit-full-screen .cb-slide img {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Mobile Responsive Styles for Bursary Page */
@media (max-width: 768px) {
  .bursary-content {
    padding: 20px 15px;
  }
  
  .bursary-content h1 {
    font-size: 2rem;
  }
  
  .bursary-content h2 {
    font-size: 1.6rem;
  }
  
  .bursary-content h3 {
    font-size: 1.2rem;
  }
  
  .bursary-content p {
    font-size: 1rem;
  }
  
  .bursary-images {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .colin-image, .logo-image {
    min-width: 200px;
    max-width: 100%;
  }
  
  .standalone-image {
    max-width: 250px;
    height: 250px;
  }
  
  .image-caption {
    font-size: 1rem;
  }
  
  .cb-slider {
    aspect-ratio: 4 / 3;
  }
  
  .cb-slider .cb-play-pause,
  .cb-slider .cb-fullscreen {
    top: 10px;
    padding: 8px;
    font-size: 14px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .cb-slider .cb-play-pause {
    right: 50px;
  }
  
  .cb-slider .cb-fullscreen {
    right: 10px;
  }
  
  /* Mobile fullscreen specific styles for CB slider */
  .cb-slider:fullscreen,
  .cb-slider:-webkit-full-screen,
  .cb-slider:-moz-full-screen,
  .cb-slider:-ms-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: black !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
  }
  
  .cb-slider:fullscreen .cb-slides,
  .cb-slider:-webkit-full-screen .cb-slides,
  .cb-slider:-moz-full-screen .cb-slides,
  .cb-slider:-ms-fullscreen .cb-slides {
    width: 100vw !important;
    height: 100vh !important;
  }
  
  .cb-slider:fullscreen .cb-slide,
  .cb-slider:-webkit-full-screen .cb-slide,
  .cb-slider:-moz-full-screen .cb-slide,
  .cb-slider:-ms-fullscreen .cb-slide {
    width: 100vw !important;
    height: 100vh !important;
  }
  
  .cb-slider:fullscreen .cb-slide img,
  .cb-slider:-webkit-full-screen .cb-slide img,
  .cb-slider:-moz-full-screen .cb-slide img,
  .cb-slider:-ms-fullscreen .cb-slide img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  
  /* Ensure fullscreen controls are visible on mobile for CB slider */
  .cb-slider:fullscreen .cb-play-pause,
  .cb-slider:fullscreen .cb-fullscreen,
  .cb-slider:-webkit-full-screen .cb-play-pause,
  .cb-slider:-webkit-full-screen .cb-fullscreen,
  .cb-slider:-moz-full-screen .cb-play-pause,
  .cb-slider:-moz-full-screen .cb-fullscreen,
  .cb-slider:-ms-fullscreen .cb-play-pause,
  .cb-slider:-ms-fullscreen .cb-fullscreen {
    position: absolute !important;
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }
}

/* One Club Page Styling */
.one-club-content {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  padding: 30px;
  line-height: 1.6;
  text-align: center;
}

.one-club-content h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0a5909;
}

.one-club-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0a5909;
}

.one-club-content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #0a5909;
  text-align: left;
}

.one-club-content p {
  margin: 15px 0;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}

/* Club Logos Section */
.club-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.logo-container {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.club-logo-image {
  width: 100%;
  max-width: 180px;
  height: 180px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  object-fit: contain;
  background-color: white;
}

.logo-caption {
  margin-top: 10px;
  font-weight: bold;
  color: #0a5909;
  font-size: 1.1rem;
}

/* One Club Introduction */
.one-club-intro {
  background: #e8f5e8;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #0a5909;
}

.one-club-intro p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0a5909;
  margin: 0;
}

/* SGI Statement */
.sgi-statement {
  text-align: left;
  margin: 30px 0;
}

.sgi-statement h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #0a5909;
  margin-bottom: 20px;
}

.sgi-statement h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #0a5909;
  text-align: left;
}

/* Core Principles List */
.core-principles {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.core-principles li {
  margin: 15px 0;
  padding: 15px;
  background: #f0f8f0;
  border-radius: 8px;
  border-left: 4px solid #0a5909;
  line-height: 1.5;
}

.core-principles li strong {
  color: #0a5909;
  font-size: 1.1rem;
}

/* SGI Quote */
.sgi-quote {
  background: #f8f9fa;
  border-left: 4px solid #0a5909;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  font-style: italic;
}

.sgi-quote p {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sgi-quote cite {
  display: block;
  text-align: right;
  font-weight: bold;
  color: #0a5909;
  font-style: normal;
}

/* SGI Signature */
.sgi-signature {
  background: #e8f5e8;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #555;
  margin-top: 20px;
}

/* Mobile Responsive Styles for One Club Page */
@media (max-width: 768px) {
  .one-club-content {
    padding: 20px 15px;
  }
  
  .one-club-content h1 {
    font-size: 2rem;
  }
  
  .one-club-content h2 {
    font-size: 1.6rem;
  }
  
  .one-club-content h3 {
    font-size: 1.2rem;
  }
  
  .one-club-content p {
    font-size: 1rem;
  }
  
  .club-logos {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .logo-container {
    min-width: 200px;
    max-width: 100%;
  }
  
  .club-logo-image {
    max-width: 130px;
    height: 130px;
  }
  
  .logo-caption {
    font-size: 1rem;
  }
  
  .one-club-intro p {
    font-size: 1.1rem;
  }
  
  .core-principles li {
    padding: 12px;
    margin: 10px 0;
  }
  
  .core-principles li strong {
    font-size: 1rem;
  }
  
  .sgi-quote {
    padding: 15px;
  }
  
  .sgi-quote p {
    font-size: 1rem;
  }
  
  .sgi-signature {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Sponsors Page Styling */
.sponsors-content {
  text-align: center;
  padding: 40px 20px;
}

.coming-soon-message {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  padding: 40px;
  margin: 20px 0;
  border-left: 4px solid #0a5909;
}

.coming-soon-message h2 {
  color: #0a5909;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.coming-soon-message p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin: 15px 0;
  text-align: center;
}

/* Mobile Responsive Styles for Sponsors Page */
@media (max-width: 768px) {
  .sponsors-content {
    padding: 20px 15px;
  }
  
  .coming-soon-message {
    padding: 30px 20px;
  }
  
  .coming-soon-message h2 {
    font-size: 2rem;
  }
  
  .coming-soon-message p {
    font-size: 1.1rem;
  }
}

