/* /assets/css/style.css */

/* Import Google Fonts (Optional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif; /* Example font */
}

/* Hero Section Base Styles */
.hero-section {
    background-size: cover;
    background-position: center center;
    color: white; /* Default text color for heroes */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    text-align: center;
    position: relative; /* Needed for overlay */
    overflow: hidden;
}

/* Optional: Add a dark overlay for better text readability on images */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust darkness (0.5 = 50% black) */
    z-index: 1;
}

/* Ensure hero content is above the overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Limit content width */
    padding: 2rem; /* Add some padding */
}

/* Specific Hero Heights (using Tailwind classes defined in header/config) */
.hero-home {
    min-height: theme('minHeight.hero-home'); /* Reference Tailwind config */
    height: theme('height.hero-home');
}

.hero-standard {
     min-height: theme('minHeight.hero-standard'); /* Reference Tailwind config */
     height: theme('height.hero-standard');
}

/* Add other custom styles here if needed */
/* Example: Style specific elements not easily covered by Tailwind */
.service-card {
    @apply bg-white p-6 rounded-lg shadow-lg transition duration-300 hover:shadow-xl; /* Combine Tailwind classes */
    /* Add any custom CSS here if needed */
}