/* ==========================================================================
   DECK - Responsive Styles
   ========================================================================== */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }

    .header-bg {
        text-align: center;
    }

    .header-bg header {
        flex-direction: column;
    }

    .header-bg nav {
        margin-top: 1rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1.25rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .architect-section .grid {
        grid-template-columns: 1fr;
    }

    .architect-photo {
        margin: 0 auto;
    }

    .design-process {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .process-step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .process-description {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        text-align: center;
        min-width: auto;
        background: rgba(0, 0, 0, 0.8);
        padding: 8px 12px;
        border-radius: 8px;
        max-width: 100px;
        margin: 0 auto;
    }

    .process-description::before {
        display: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.1rem; }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .handwriting {
        font-size: 1.5rem;
    }

    .architect-section blockquote {
        font-size: 1.5rem;
    }
}