* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #666666;
    background-color: #ffffff;
    line-height: 1.6;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

.inner-page-header {
    position: relative;
    background-color: #14b9a6;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 2px;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav a:hover, .main-nav a.active {
    color: #14b9a6;
}

.inner-page-header .main-nav a:hover,
.inner-page-header .main-nav a.active {
    color: #000000;
}

.hero-section {
    background: linear-gradient(rgba(230, 185, 180, 0.4), rgba(230, 185, 180, 0.4)), url('https://picsum.photos/1920/900?image=1015') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: normal;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-go {
    display: inline-block;
    background-color: #14b9a6;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 1px;
}

.about-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.about-section h2 {
    color: #14b9a6;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-lead {
    font-size: 14px;
    color: #777777;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-box {
    flex: 1;
    text-align: center;
}

.service-icon {
    font-size: 42px;
    color: #14b9a6;
    margin-bottom: 15px;
    display: inline-block;
}

.service-box h3 {
    color: #14b9a6;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-box p {
    font-size: 13px;
    color: #888888;
    text-align: justify;
}

.portfolio-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    height: 340px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: sepia(0.4) brightness(0.85) contrast(0.95);
}

.item-1 { background-image: url('https://picsum.photos/800/600?image=1073'); }
.item-2 { background-image: url('https://picsum.photos/800/600?image=1043'); filter: none; }
.item-3 { background-image: url('https://picsum.photos/800/600?image=1050'); }
.item-4 { background-image: url('https://picsum.photos/800/600?image=1051'); }

.active-item .portfolio-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #14b9a6;
    color: #ffffff;
    padding: 25px;
    text-align: left;
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: normal;
    font-family: Georgia, serif;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 12px;
    opacity: 0.9;
}

.zoom-badge {
    position: absolute;
    top: -45px;
    right: 25px;
    background-color: #11a291;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 16px;
}

.portfolio-btn-wrapper {
    text-align: center;
}

.btn-more {
    display: inline-block;
    background-color: #14b9a6;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
}

.archive-intro {
    max-width: 800px;
    margin: 60px auto 20px auto;
    text-align: center;
    padding: 0 20px;
}

.archive-intro h2 {
    color: #14b9a6;
    margin-bottom: 10px;
}

.extended-grid {
    grid-template-columns: repeat(3, 1fr);
}

.extended-grid .portfolio-item {
    height: 260px;
}

.contact-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #14b9a6;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 45px;
    font-family: Georgia, serif;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    border: none;
    background-color: #eaeaea;
    font-size: 15px;
    color: #333333;
    border-radius: 2px;
}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.site-footer {
    background-color: #14b9a6;
    color: #ffffff;
    padding: 40px 0 25px 0;
}

.footer-social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-tile {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: #14b9a6;
    font-family: sans-serif;
    font-weight: bold;
    border: 2px solid #a6e4dc;
}

.footer-credits {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

@media (max-width: 768px) {
    .site-header {
        position: static;
        background-color: #11a291;
        padding: 20px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav a {
        margin: 0 10px;
    }

    .hero-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-container {
        flex-direction: column;
        gap: 40px;
    }

    .portfolio-grid, .extended-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item, .extended-grid .portfolio-item {
        height: 260px;
    }

    .form-group-row {
        flex-direction: column;
        gap: 15px;
    }

    .footer-credits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}