/* ========================================
Works otaf HP Styles
======================================== */

/* ========================================
CSS Variables
======================================== */
:root {
    --primary-color: #5596B1;
    --secondary-color: #E4ECF0;
    --accent-color: #E68E30;
    --text-color: #333;
    --white: #ffffff;
    --font-serif: 'adobe-garamond-pro', 'EB Garamond', serif;
    --font-sans: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    --font-serif-jp: 'Ryumin Web', 'EB Garamond', 'Times New Roman', serif;
}

/* ========================================
Base Styles
======================================== */
html {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

/* ========================================
Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* ========================================
Navigation
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 90%;
}

.nav-logo a {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--primary-color);
}

.nav-logo img{
    width: 100px;
}

.nav-container-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 70px;
    width: 90%;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    z-index: 101;
    position: fixed;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ========================================
Button Arrow Styles
======================================== */
.btn-arrow {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.btn-arrow:hover {
    color: var(--primary-color);
}

/* ========================================
button Styles
======================================== */

/* サイトボタン */

.site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
}

.site-btn span,
.site-btn svg {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.site-btn svg {
    color: var(--text-color);
}

.site-btn:hover::before {
    left: 0;
}

.site-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
}

.site-btn:hover svg path {
    fill: var(--white);
}

/* ワークボタン */

.work-btn-container-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.work-btn-container {
    margin: 10% 0;
    text-align: center;
}

.work-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    z-index: 1;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
}

.work-prev-btn::before {
    left: auto;
    right: -100%;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}

.work-btn span,
.work-btn svg {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.work-btn svg {
    color: var(--text-color);
}

.work-btn svg path {
    stroke: var(--text-color);
    fill: none;
    transition: stroke 0.3s, fill 0.3s;
}

/* nextボタンhover: 右→左 */
.work-next-btn:hover::before {
    left: 0;
}

/* prevボタンhover: 左→右 */
.work-prev-btn:hover::before {
    right: 0;
}

.work-btn:hover {
    color: var(--white);
    border-color: var(--text-color);
}

.work-btn:hover svg {
    color: var(--white);
}

.work-btn:hover svg path {
    stroke: var(--white);
    fill: none;
}

/* ========================================
works Hero Section
======================================== */
.works-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.works-hero-image {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    z-index: 1;
}

.works-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-hero-overlay {
    position: absolute;
    top: -230px;
    left: -1px;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.works-hero-text-box {
    background-color: var(--white);
    padding: 18px 36px;
    max-width: 620px;
    width: 42%;
}

.works-hero-title {
    font-family: var(--font-serif-jp);
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    display: inline-block;
    position: relative;
}

.works-hero-title br{
    display: none;
}

.works-hero-title::after{
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: var(--text-color);
    position: absolute;
    top: -14px;
    left: 80px;  
}

.works-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.1em;
    display: block;
}

.works-hero-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 8.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 5%;
    top: 40%;
    white-space: nowrap;
}

/* ========================================
Project Summary Section
======================================== */
.project-summary-section {
    padding: 8% 0;
    background-color: var(--white);
    position: relative;
}

.project-Summary {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-description {
    font-family: var(--font-sans);
    font-size: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 6% 0;
    text-align: left;
}

.work-description-bold {
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
Project Items Section
======================================== */
.project-items-section {
    padding: 0 0 8% 0;
    background-color: var(--white);
    position: relative;
}

.project-items {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8% 5%;
    position: relative;
    z-index: 1;
}

.project-items table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.project-item {
    border-bottom: 1px solid #E0E0E0;
}

.project-item:last-child {
    border-bottom: none;
}

.project-item-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    padding: 30px 0px 30px 40px;
    width: 35%;
    vertical-align: top;
    border: none;
}

.project-item-content {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;
    padding: 30px 0 30px 40px;
    width: 65%;
    vertical-align: top;
    line-height: 1.6;
    border: none;
}

.project-item-content br {
    margin-bottom: 8px;
}

/* Dotted separators */
.project-items::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background-image: radial-gradient(circle, var(--primary-color) 30%, transparent 40%);
    background-size: 16px 6px;
    background-repeat: repeat-x;
}

.project-items::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background-image: radial-gradient(circle, var(--primary-color) 30%, transparent 40%);
    background-size: 16px 6px;
    background-repeat: repeat-x;
}

/* ========================================
Achievement Section
======================================== */
.achivement-section {
    padding-bottom: 8%;
    background-color: var(--white);
    position: relative;
}

.achivement-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.achivement-item {
    padding: 40px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.achivement-item:first-child {
    background: linear-gradient(135deg, #F5E6D3 0%, #F0D9C7 100%);
}

.achivement-item:last-child {
    background: linear-gradient(135deg, #E4ECF0 0%, #D8E2E8 100%);
}

.achivement-subtitle {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 8px 0;
    opacity: 0.8;
}

.achivement-title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 40px 0;
    position: relative;
}

.achivement-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.achivement-description {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 25px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.achivement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achivement-list-item {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 15px 0;
    padding: 0 0 0 35px;
    position: relative;
    line-height: 1.6;
}

.achivement-list-item:last-child {
    margin-bottom: 0;
}

.achivement-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.50817 12.2917C8.58564 12.3699 8.67781 12.4319 8.77936 12.4742C8.88091 12.5165 8.98983 12.5382 9.09984 12.5382C9.20985 12.5382 9.31877 12.5165 9.42032 12.4742C9.52187 12.4319 9.61403 12.3699 9.6915 12.2917L13.0915 8.89175C13.2484 8.73483 13.3366 8.522 13.3366 8.30008C13.3366 8.07816 13.2484 7.86533 13.0915 7.70841C12.9346 7.55149 12.7218 7.46334 12.4998 7.46334C12.2779 7.46334 12.0651 7.55149 11.9082 7.70841L9.09984 10.5251L8.0915 9.50841C7.93458 9.35149 7.72176 9.26334 7.49984 9.26334C7.27792 9.26334 7.06509 9.35149 6.90817 9.50841C6.75125 9.66533 6.66309 9.87816 6.66309 10.1001C6.66309 10.322 6.75125 10.5348 6.90817 10.6917L8.50817 12.2917ZM17.4998 1.66675H2.49984C2.27882 1.66675 2.06686 1.75455 1.91058 1.91083C1.7543 2.06711 1.6665 2.27907 1.6665 2.50008V17.5001C1.6665 17.7211 1.7543 17.9331 1.91058 18.0893C2.06686 18.2456 2.27882 18.3334 2.49984 18.3334H17.4998C17.7208 18.3334 17.9328 18.2456 18.0891 18.0893C18.2454 17.9331 18.3332 17.7211 18.3332 17.5001V2.50008C18.3332 2.27907 18.2454 2.06711 18.0891 1.91083C17.9328 1.75455 17.7208 1.66675 17.4998 1.66675ZM16.6665 16.6667H3.33317V3.33341H16.6665V16.6667Z' fill='%231E1E1E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ========================================
Pages Section
======================================== */
.pages-section {
    padding: 8% 0;
    background-color: #E4ECF0;
    position: relative;
}

.pages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(228, 236, 240, 0.3) 0%, transparent 20%, transparent 80%, rgba(228, 236, 240, 0.3) 100%);
    pointer-events: none;
}

.pages-section .section-title {
    font-family: var(--font-serif);
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
}

.pages-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-description {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin: 0 0 8% 0;
    line-height: 1.6;
}

.pages-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pages-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 0;
    padding: 12px 24px;
    background-color: var(--white);
    border: 2px solid var(--text-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pages-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    z-index: 1;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
}

.pages-title span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pages-description {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    width: 95%;
    height: 40px;
}

.pages-scroll-container {
    width: 500px;
    height: 820px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 3px solid #fff;
}

.pages-scroll-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.pages-scroll-content::-webkit-scrollbar {
    width: 6px;
}

.pages-scroll-content::-webkit-scrollbar-track {
    background: transparent;
}

.pages-scroll-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.pages-scroll-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.pages-scroll-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ========================================
Footer
======================================== */
.footer {
    background-color: #E4ECF0;
    color: var(--text-color);
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.copy-mark {
    font-size: 1.8rem;
    position: relative;
    top: 3px;
}

/* ========================================
Responsive Design for Project Sections
======================================== */

@media (max-width: 1440px) {
    .works-hero-side-text{
        font-size: 7.2rem;
    }
}

@media (max-width: 1280px) {
    .pages-scroll-container{
        width: 400px;
        height: 750px;
    }
}
@media (max-width: 1024px) {
    .works-hero-title{
        font-size: 2.8rem;
    }

    .works-hero-image{
        top: 80px;
    }
    .works-hero-subtitle{
        font-size: 1.4rem;
    }

    .works-hero-side-text{
        font-size: 6.2rem;
        top: 45%;
    }
    
    .project-description {
        font-size: 1.8rem;
    }
    
    .site-btn,.work-btn {
        font-size: 1.6rem;
        padding: 16px 32px;
    }
    
    .project-item-title {
        font-size: 1.8rem;
        width: 30%;
    }
    
    .project-item-content {
        font-size: 1.4rem;
        padding-left: 30px;
    }

    .achivement-subtitle{
        font-size: 1.4rem;
    }

    .achivement-grid-2 {
        gap: 30px;
    }
    
    .achivement-item {
        padding: 35px;
    }
    
    .achivement-title {
        font-size: 3rem;
    }
    
    .achivement-list-item {
        font-size: 1.4rem;
    }
    
    .achivement-description {
        font-size: 1.4rem;
    }

    .pages-grid-2 {
        gap: 30px;
        padding: 0 3%;
    }

    .pages-title {
        font-size: 1.6rem;
        padding: 10px 20px;
    }

    .pages-grid-2 {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 0 5%;
    }

    .pages-scroll-container {
        width: 100%;
        max-width: 500px;
        height: 750px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 50%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 10% 0;
        gap: 3rem;
        overflow-y: auto;
        z-index: 99;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .works-hero {
        height: 80vh;
        min-height: 500px;
    }

    .works-hero-title::after{
        display: none;
    }

    .works-hero-overlay {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        top: 0;
    }
    
    .works-hero-text-box {
        padding: 20px 30px;
        max-width: 280px;
    }
    
    .works-hero-title {
        font-size: 2.2rem;
    }
    
    .works-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .works-hero-side-text {
        font-size: 4rem;
        top: 25%;
    }

    .works-hero-image{
        top: 60px;
    }
    .project-summary-section,
    .project-items-section {
        padding: 10% 0 0 0;
    }
    
    .project-description {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .site-btn,.work-btn {
        font-size: 1.4rem;
        padding: 14px 28px;
    }
    
    .project-item {
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .project-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .project-item-title {
        display: block;
        width: 100%;
        font-size: 1.6rem;
        padding: 0 0 10px 0;
        font-weight: 600;
    }
    
    .project-item-content {
        display: block;
        width: 100%;
        padding: 0;
        line-height: 1.6;
    }

    .achivement-section {
        padding: 10% 0;
    }
    
    .achivement-grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 5%;
    }
    
    .achivement-item {
        padding: 30px;
    }
    
    .achivement-title {
        font-size: 2.8rem;
    }
    
    .achivement-subtitle {
        font-size: 1.2rem;
    }
    
    .achivement-list-item {
        padding-left: 30px;
    }
    
    .achivement-list-item::before {
        width: 18px;
        height: 18px;
        top: 1px;
    }

    .pages-section {
        padding: 10% 0;
    }

    .pages-section .section-title::after{
        width: 150px;
    }

    .pages-description{
        height: 30px;
        font-size: 1rem;
    }
    
    .pages-section .section-title {
        font-size: 3.2rem;
    }
    
    .section-description {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .pages-title {
        font-size: 1.4rem;
        padding: 8px 16px;
    }

    .pages-grid-2::before,
    .pages-grid-2::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container{
        width: 100%;
    }
    .nav-logo a{
        font-size: 2.4rem;
    }
    .nav-logo img{
        width: 80px;
    }
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        padding: 5% 0;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.6rem;
    }

    .works-hero-text-box {
        padding: 15px 10px;
        width: 45%;
    }
    
    .works-hero-title {
        font-size: 2.4rem;
    }
    
    .works-hero-side-text {
        font-size: 3.2rem;
    }

    .works-hero-image{
        top: 40px;
    }
    .project-description {
        font-size: 1.2rem;
    }
    
    .site-btn,.work-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .project-items-section{
        padding-top: 15%;
    }

    .project-items{
        padding: 15% 3%;
    }
    
    .project-item-title {
        font-size: 1.4rem;
    }
    
    .project-item-content {
        font-size: 1.2rem;
    }

    .achivement-section {
        padding: 15% 0;
    }

    .achivement-item {
        padding: 25px;
    }
    
    .achivement-title {
        font-size: 2.4rem;
        margin: 0 0 30px 0;
    }
    
    .achivement-subtitle {
        font-size: 1rem;
    }
    
    .achivement-list-item {
        font-size: 1.1rem;
        padding-left: 28px;
    }
    
    .achivement-list-item::before {
        width: 16px;
        height: 16px;
    }
    
    .achivement-description {
        font-size: 1.1rem;
    }

    .pages-section .section-title {
        font-size: 2.8rem;
    }
    
    .section-description {
        font-size: 1.2rem;
    }

    .pages-section{
        padding: 15% 0;
    }

    .pages-section .section-title::after{
        width: 90px;
    }
    
    .pages-scroll-container {
        height: 500px;
    }
    
    .pages-title {
        font-size: 1.4rem;
        padding: 6px 12px;
    }

    .work-btn-container{
        margin: 15% 0;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 1.8rem;
    }

    .works-hero-title br{
        display: block;
    }
}

@media (max-width: 375px) {
    .work-btn-container-wrapper{
        flex-direction: column;
        gap: 30px;
        margin: 15% 0;
    }

    .work-btn-container{
        margin: 0;
    }

    .work-btn-container{
        width: 50%;
    }

    .work-btn{
        display: block;
    }

    .pages-description br{
        display: none;
    }
}