* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e5e5e5;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.menu-button {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-button span {
    width: 24px;
    height: 2px;
    background: #111111;
    display: block;
    transition: 0.25s ease;
}

.menu-button:hover span {
    background: #b38a2e;
}

.menu {
    position: absolute;
    top: 75px;
    right: 6%;
    width: 210px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
}

.menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu a {
    display: block;
    padding: 10px 12px;
    color: #111111;
    text-decoration: none;
    border-radius: 7px;
    transition: 0.2s ease;
}

.menu a:hover {
    background: #f7f2e5;
    color: #b38a2e;
}

.hero {
    min-height: 100vh;
    padding: 120px 8% 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    max-width: 650px;
    animation: apparition 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero p {
    max-width: 550px;
    font-size: 1.1rem;
    color: #555555;
}

.hero-logo {
    width: 35%;
    display: flex;
    justify-content: center;
    animation: apparition 1s ease forwards;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
    object-fit: contain;
}

.presentation {
    max-width: 1000px;
    margin: auto;
    padding: 100px 8%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.presentation.visible {
    opacity: 1;
    transform: translateY(0);
}

.presentation h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.presentation p {
    color: #555555;
    font-size: 1.05rem;
}

.page-header {
    padding: 150px 8% 70px;
    max-width: 1000px;
    margin: auto;
    animation: apparition 0.8s ease forwards;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header p {
    max-width: 700px;
    color: #555555;
    font-size: 1.05rem;
}

.projects {
    max-width: 1000px;
    margin: auto;
    padding: 20px 8% 100px;
}

.project {
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: 0.25s ease;
}

.project:first-child {
    border-top: 1px solid #e5e5e5;
}

.project:hover {
    padding-left: 8px;
}

.project h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.project p {
    margin-bottom: 15px;
    color: #555555;
}

.project a,
.project-links a,
.contact-links a {
    color: #a77d20;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.project a:hover,
.project-links a:hover,
.contact-links a:hover {
    color: #111111;
}

.project-page {
    max-width: 1000px;
    margin: auto;
    padding: 140px 8% 100px;
}

.project-header {
    margin-bottom: 50px;
    animation: apparition 0.8s ease forwards;
}

.project-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.project-header p {
    color: #555555;
    font-size: 1.05rem;
}

.project-image {
    width: 100%;
    margin-bottom: 60px;
}

.project-image img {
    display: block;
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.project-content {
    max-width: 800px;
}

.project-content h2 {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.project-content p {
    color: #555555;
    margin-bottom: 25px;
}

.project-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.contact-section {
    max-width: 1000px;
    margin: auto;
    padding: 20px 8% 100px;
}

.contact-content {
    max-width: 800px;
}

.contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-content p {
    color: #555555;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.footer {
    padding: 30px 8%;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #666666;
}

@keyframes apparition {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {

    .header {
        height: 65px;
        padding: 0 5%;
    }

    .menu {
        top: 65px;
        right: 5%;
        width: 200px;
    }

    .hero {
        min-height: auto;
        padding: 130px 7% 70px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-logo img {
        max-width: 220px;
    }

    .presentation {
        padding: 70px 7%;
    }

    .presentation h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 7% 60px;
    }

    .projects {
        padding: 20px 7% 70px;
    }

    .project-page {
        padding: 120px 7% 70px;
    }

    .project-image {
        margin-bottom: 40px;
    }

    .project-content h2 {
        font-size: 1.5rem;
    }

    .project-links {
        flex-direction: column;
        gap: 15px;
    }

    .contact-section {
        padding: 20px 7% 70px;
    }
}

.header-actions{display:flex;align-items:center;gap:10px}
.notif-wrapper{position:relative}
.notif-button{width:42px;height:42px;border:none;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center}
.notif-button:hover{background:#f7f2e5;border-radius:50%}
.notif-menu{position:absolute;top:52px;right:0;width:280px;padding:16px;background:#fff;border:1px solid #e5e5e5;border-radius:10px;box-shadow:0 8px 25px rgba(0,0,0,.08);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.25s ease;z-index:1001}
.notif-menu.active{opacity:1;visibility:visible;transform:translateY(0)}
.notif-menu p{margin-bottom:12px;color:#555;font-size:.95rem}
.notif-menu a{display:block;padding:10px 12px;background:#f7f2e5;border-radius:7px;color:#a77d20;text-decoration:none;font-weight:600}
.notif-menu a:hover{background:#efe6cf;color:#111}
@media(max-width:700px){.header-actions{gap:5px}.notif-menu{right:-5px;width:260px}}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notif-wrapper {
    position: relative;
}

.notif-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notif-button:hover {
    background: #f7f2e5;
}

 .notif-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #111111;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    transform: none;
}

.notif-button:hover .notif-icon {
    stroke: #b38a2e;
}

.notif-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 290px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
    z-index: 1001;
}

.notif-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notif-menu p {
    margin-bottom: 12px;
    color: #555555;
    font-size: 0.95rem;
}

.notif-menu a {
    display: block;
    padding: 10px 12px;
    background: #f7f2e5;
    border-radius: 7px;
    color: #a77d20;
    text-decoration: none;
    font-weight: 600;
}

.notif-menu a:hover {
    background: #efe6cf;
    color: #111111;
}

@media (max-width: 700px) {
    .header-actions {
        gap: 5px;
    }

    .notif-menu {
        right: -5px;
        width: 260px;
    }
}