*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Georgia, "Times New Roman", serif;
    background:#ffffff;
    color:#111111;
    line-height:1.8;
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;
    border-bottom:1px solid #eeeeee;
}

.logo{
    font-size:15px;
    letter-spacing:4px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#111;
    font-size:14px;
    letter-spacing:1px;
    transition:0.3s;
}

.menu a:hover{
    opacity:0.6;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
}

.hero-text{
    position:absolute;
    left:8%;
    bottom:10%;
    z-index:2;
    color:white;
}

.hero-text h1{
    font-size:72px;
    font-weight:normal;
    line-height:1.1;
    margin-bottom:15px;
    letter-spacing:2px;
}

.hero-text p{
    font-size:20px;
}

.intro{
    max-width:900px;
    margin:140px auto;
    padding:0 30px;
    text-align:center;
}

.intro h2{
    font-size:48px;
    font-weight:normal;
    margin-bottom:25px;
}

.intro p{
    font-size:22px;
    color:#555;
}

.gallery{
    width:90%;
    margin:0 auto 150px auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:50px;
}

.artwork{
    overflow:hidden;
}

.artwork img{
    width:100%;
    display:block;
    transition:0.5s;
}

.artwork img:hover{
    transform:scale(1.03);
}

.about{
    max-width:1100px;
    margin:0 auto 140px auto;
    padding:0 30px;
}

.about-image{
    width:100%;
    display:block;
    margin-bottom:60px;
}

.about h2{
    text-align:center;
    font-size:48px;
    font-weight:normal;
    margin-bottom:50px;
}

.about p{
    max-width:850px;
    margin:0 auto 25px auto;
    font-size:20px;
    color:#333;
}

.contact{
    text-align:center;
    padding:120px 20px;
    border-top:1px solid #eeeeee;
}

.contact h2{
    font-size:48px;
    font-weight:normal;
    margin-bottom:30px;
}

.contact p{
    font-size:20px;
}

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid #eeeeee;
    color:#777;
}

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    .menu{
        gap:20px;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-text p{
        font-size:16px;
    }

    .intro h2,
    .about h2,
    .contact h2{
        font-size:34px;
    }

    .intro p,
    .about p,
    .contact p{
        font-size:18px;
    }

    .gallery{
        width:94%;
        grid-template-columns:1fr;
    }
}