/* Page Specific Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient overlay with background image */
    background: linear-gradient(to right, var(--color-bg) 0%, rgba(0, 0, 0, 0.4) 100%), url('../../assets/Website_Hero.jpg') center/cover no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    /* Wider */
}

.hero-title {
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0.7;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Featured Section */
#featured {
    padding-top: var(--spacing-xl);
    /* Big gap */
}