@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;700&family=Raleway:wght@400;600;700&display=swap');
.body{
    margin: 0;
    
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-text {
  width: 70%;
  height: auto;
  padding: 4px;
}

.brand-name {
  font-size: clamp(14px, 2vw, 20px); 
  font-weight: 700;
  color: #000;
}

.hero-content h1{
  font-family: 'Raleway', sans-serif;
}

.hero-content p{
  font-family: 'Alegreya', sans-serif;
}

.hero-section {
    position: relative;
    height: 600px;
    color: white;
}

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

/* Default: show mobile, hide desktop */
.desktop-bg {
  display: none;
}
.mobile-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* From medium screens and above (≥768px), show desktop image */
@media (min-width: 768px) {
  .desktop-bg {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-bg {
    display: none;
  }
}

.hero-section h1 {

  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.2;
  text-align: center;
  padding: 0 10px;
}

.hero-section p {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.competitions-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 700;
    color: #228B22;
    font-family: 'raleway', sans-serif;
}
.competition-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.competition-card h3 {
    font-family: 'raleway', sans-serif; 
    font-size: 1.17rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
        }

.competition-card ul li {
  color: #000;
  font-family: 'Alegreya', sans-serif; 
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
        }
       
.h1, h2,h3,h4,h5,h6{
    font-family: 'raleway',sans-serif;
  }

  p,a,th,td{
    font-family: 'Alegreya', sans-serif;
  }
        /*.pagination-dots {
            text-align: center;
            margin-top: 40px;
        }
        .pagination-dots span {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
        }
        .pagination-dots span.active {
            background-color: #ffc107;
        }*/

/* Default: show mobile, hide desktop */
.Golf-course-desktop {
  display: none;
}
.Golf-course-mobile {
  display: block;
  width: 100%;
  height: auto;
}

/* From medium screens and above (≥768px), show desktop image */
@media (min-width: 768px) {
  .Golf-course-desktop {
    display: block;
    width: 100%;
    height: auto;
  }
  .Golf-course-mobile {
    display: none;
  }
}