html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #f9f9f9;
    font-family: 'Inter', sans-serif;
}

body > main {
    flex: 1 0 auto;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2'),
         url('/assets/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.hidden {
    display: none;
}

/* Hero Banner Styles */
.hero-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 600px; /* or 800px as you set it */
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);   /* Bottom shadow */
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 450px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 40px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-container {
        height: 500px;
    }
    
    .banner-content {
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 35px 30px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 400px;
    }
    
    .banner-content {
        padding: 30px 25px;
    }
    
    .banner-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}


/* Homepage sections */
.homepage-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eef;
}

.section-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}

.section-link {
    color: #0069ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.section-link:hover {
    color: #004ec7;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.vertical-photo-section {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin: 2.5rem auto 1.5rem auto;
  max-width: 900px;
  padding-bottom: 5rem;
}

.vertical-photo {
  width: 440px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  flex-shrink: 0;
}

.vertical-photo-text {
  flex: 1;
  color: #222;
  font-size: 1.06rem;
  line-height: 1.6;
}

.vertical-photo-text .main-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.2rem 0;
  line-height: 1.3;
}

.vertical-photo-text .description-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 0.8rem 0;
}

.vertical-photo-text .description-text.spaced {
  margin-top: 1.6rem;
}

/* Tablet/Medium screens */
@media (max-width: 900px) {
  .vertical-photo-section {
    max-width: 700px;
  }

  .vertical-photo {
    width: 360px;
  }

  .vertical-photo-text {
    font-size: 1rem;
  }

  .vertical-photo-text .main-heading {
    font-size: 1.6rem;
  }

  .vertical-photo-text .description-text {
    font-size: 0.95rem;
  }
}

/* Mobile - Stack vertically */
@media (max-width: 600px) {
  .vertical-photo-section {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    max-width: 100%;
    margin: 1.5rem 1rem 1.5rem 1rem;
    padding: 0 0.5rem;
  }

  .vertical-photo {
    width: 280px;
  }

  .vertical-photo-text {
    font-size: 0.95rem;
  }

  .vertical-photo-text .main-heading {
    font-size: 1.4rem;
  }

  .vertical-photo-text .description-text {
    font-size: 0.9rem;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .vertical-photo {
    width: 200px;
  }

  .vertical-photo-text {
    font-size: 0.9rem;
  }

  .vertical-photo-text .main-heading {
    font-size: 1.2rem;
  }

  .vertical-photo-text .description-text {
    font-size: 0.85rem;
  }
}
