/* style/tintc.css */

/* Base styles for the page content, ensuring light text on dark background */
.page-tintc {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add padding to the bottom of the main content */
}

/* Hero Section */
.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden; /* Ensure no overflow from image */
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit hero image height */
  object-fit: cover;
  display: block;
  margin-bottom: 20px; /* Space between image and content */
}

.page-tintc__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-tintc__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  color: #F2FFF6; /* Main text color */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tintc__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

/* General Container */
.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}