@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;
}

/* ✅ Mobile responsiveness 
@media (max-width: 768px) {
  .logo-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .logo-text {
    width: 75%;
    padding: 3px;
  }
}*/

.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;
}
.shadow-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(3, 3, 3, 0.7);
    width: 100%;
    height: 100%;
}

/* From medium screens and above (≥768px), show desktop image */
@media (min-width: 768px) {
  .desktop-bg {
    display: block;
    width: 100%;
    height: auto;
    object-position: bottom;
    object-fit: cover;
  }
  .mobile-bg {
    display: none;
  }
  .shadow-overlay {
    background: rgba(36, 20, 20, 0.4);
  }
}

.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;
}

/* 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;
  }
}
.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;
}

.h1, h2,h3,h4,h5,h6{
    font-family: 'raleway',sans-serif;
  }

  p, a{
    font-family: 'Alegreya', sans-serif;
  }
/*@media (max-width: 767px) {
  .carousel-item .row > div {
    flex: 0 0 100%;   /* each card takes full width 
    max-width: 100%;
  }
}

.lazy-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  filter: blur(10px);
  background-color: #eee;
  transition: opacity 1s ease-out, filter 1s ease-out;
  background-size: cover;
  background-position: center;
}

.lazy-img[src] {
  opacity: 1;
  filter: blur(0);
}
*/

/* Make sure images fit properly */
.desktop-bg, .mobile-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: filter 0.5s ease;
}

/* Optional blur while loading */
.blur-load {
  filter: blur(10px);
}

.blur-load.loaded {
  filter: blur(0);
  transition: filter 0.7s ease;
}

/* Optional: hide mobile or desktop images per screen size */
@media (max-width: 768px) {
  .desktop-bg { display: none; }
}
@media (min-width: 769px) {
  .mobile-bg { display: none; }
}

