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


/* Base alignment for larger screens */
.table-green-fees th:nth-child(1),
.table-green-fees td:nth-child(1) {
  width: 40%;
}

.table-green-fees th:nth-child(2),
.table-green-fees td:nth-child(2) {
  width: 30%;
}

.table-green-fees th:nth-child(3),
.table-green-fees td:nth-child(3) {
  width: 30%;
}

/* For the second table */
.table-rentals th:nth-child(1),
.table-rentals td:nth-child(1) {
  width: 70%; /* Align with first + second columns of first table */
}

.table-rentals th:nth-child(2),
.table-rentals td:nth-child(2) {
  width: 30%; /* Align with 3rd column of first table */
}

/* Responsive behavior */
@media (max-width: 768px) {
  /* On smaller screens, let columns auto-size */
  .table-green-fees th,
  .table-green-fees td,
  .table-rentals th,
  .table-rentals td {
    width: auto;
    display: table-cell;
    white-space: nowrap;
  }
  
  /* Optional: make the table scroll horizontally instead of breaking layout */
  .table-responsive {
    overflow-x: auto;
  }
}

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

  p, a, th,td{
    font-family: 'Alegreya', sans-serif;
  }