/* Typography Styles */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text-light);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

/* Paragraphs */
p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-medium);
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--color-primary-light);
}

/* Lists */
ul, ol {
    line-height: 1.7;
}

/* Section Title and Subtitle Classes */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 200;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #C0C0C0;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
}
