/**
 * Dharma Hero Section Styles
 */

.dharma-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 210px;
}

/* Dark overlay for better text readability */
.dharma-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.15); */
    z-index: 1;
    pointer-events: none;
}

.dharma-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem 2rem;
}

/* Title container with layered elements */
.dharma-title-container {
    position: relative;
    display: inline-block;
    /* margin-bottom: 2rem; */
}

/* Circle mask image from Figma */
.dharma-circle-image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    z-index: 1;
    pointer-events: none;
    z-index: -1;
}

.dharma-main-title {
    position: relative;
    z-index: 2;
    padding: 1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* "mitigating" - real text with Nadira Pro */
.dharma-mitigating {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: 'Nadira Pro', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: -0.5rem;
}

/* "DHARMA" - SVG with striped effect */
.dharma-svg {
    width: clamp(400px, 70vw, 700px);
    height: auto;
    display: block;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.4));
    margin-bottom:0;
    padding-bottom:10px;
}

/* Subtitle styling */
.dharma-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Description text */
.dharma-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    .dharma-circle-image {
        width: 350px;
        height: 350px;
    }

    .dharma-main-title {
        padding: 1.5rem 2rem;
    }

    .dharma-svg {
        width: clamp(300px, 80vw, 500px);
    }

    .dharma-hero-content {
        padding: 1.5rem;
    }

    .dharma-subtitle {
        margin-bottom: 1.5rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .dharma-circle-image {
        width: 280px;
        height: 280px;
    }

    .dharma-main-title {
        padding: 1rem 1.5rem;
    }

    .dharma-mitigating {
        margin-bottom: -0.3rem;
    }

    .dharma-hero-content {
        padding: 1rem;
    }
}