:root {
    --primary-color: #111;
    --accent-color: #c59d5f;
    --max-width: 1200px;
    --padding: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana,;
    background-color: #f2f2f2;
    color: black;
    text-shadow: #111 4px 3px 3px;
}
.intro
{
    text-align: center;
    padding: 60px 20px;
}
nav {
    padding: 20px 40px;
}

nav a {
    margin-right: 30px;
    text-decoration: none;
    color: #111;
    text-shadow: none;
}

nav a:hover {
    color: #c49b66;
}

nav a.active {
    border-bottom: 2px solid #111;
}
.banner {
    background-image: url("../img/pasa4.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
}

.banner h1 {
    color: white;
    font-size: 75px;
}

/* Remove inherited text-shadow from intro section */
.intro {
       text-shadow: none;
       text-decoration: overline;
       font-size: 35px;
       border-radius: 8px;
       padding: 40px 24px;
       margin-bottom: 24px;
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("../img/pasaosemdi.jpg");
       background-size: cover;
       background-position: center;
       color: #fff;
       border: 1px solid rgba(255,255,255,0.12);
}
.intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro p {
    max-width: 700px;
    margin: 0 auto 60px auto;
}


    /* Image overlay link for artwork */
    .image-link {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: inherit;
    }
    .image-link img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    .image-link .overlay {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           background: #c49b66;
           color: #fff;
           padding: 8px 14px;
           border-radius: 6px;
           font-weight: 700;
           pointer-events: none;
           text-align: center;
    }
    .image-link:hover .overlay {
        background: rgba(0,0,0,0.8);
    }
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--padding);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-shadow: none;
}
img {
    width: 100%;
    height: auto;
}
h1 {
    font-size: clamp(24px, 4vw, 48px);
}
.column img {
    width: 100%;
    min-width: 300px;
    flex-shrink: 0;
}
.column img:hover {
    opacity: 0.8;
}

/* Featured Work heading style */
.featured-work {
    text-decoration: underline;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.design-process {
    text-decoration: underline;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
@media (max-width: 768px) {

    .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .container {
        padding: 15px;
    }

}
@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 22px;
    }

    .container {
        padding: 10px;
    }

}
.footer{
    text-align: center;
    padding: 20px;
    background-color: whitesmoke;
}

