* {
    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);
}

    /* 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: 1100px;
    margin: 80px auto;
    padding: 0 40px;
}
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
    text-shadow: none;
}
.column img {
    width: 100%;
}
.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;
}
