/* Custom Styles for Process Hacker Website */

/* Custom utility classes - CSS only (no @apply for CDN compatibility) */
.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.heading-primary {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: rgb(17 24 39);
}

@media (min-width: 768px) {
    .heading-primary {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .heading-primary {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.heading-secondary {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

@media (min-width: 768px) {
    .heading-secondary {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.heading-tertiary {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

@media (min-width: 768px) {
    .heading-tertiary {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgb(37 99 235);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
}

.btn-primary:hover {
    background-color: rgb(29 78 216);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgb(229 231 235);
    color: rgb(31 41 55);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
}

.btn-secondary:hover {
    background-color: rgb(209 213 219);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    color: rgb(17 24 39);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}