body{
    margin:0;
    background:#f8f5ef;
    color:#333;
    font-family:Arial,sans-serif;
}

.hero{
    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:30px;
}

h1{
    font-size:64px;
    margin-bottom:10px;
}

h2{
    font-weight:300;
    margin-bottom:30px;
}

p{
    max-width:700px;
    line-height:1.7;
    font-size:20px;
}

.btn{
    margin-top:30px;

    padding:15px 35px;

    text-decoration:none;

    background:#d4b06a;

    color:white;

    border-radius:8px;
}
.header{
    width:100%;
    padding:24px 40px;
    box-sizing:border-box;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#f8f5ef;
}

.logo{
    color:#333;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
}

.nav-link{
    color:#333;
    text-decoration:none;
    font-size:18px;
}

.gallery-section{
    padding:60px 40px;
    text-align:center;
}

.gallery-section h1{
    font-size:48px;
    margin-bottom:10px;
}

.gallery-intro{
    max-width:760px;
    margin:0 auto 50px;
}

.gallery-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
}

.art-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    text-align:left;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.art-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.art-info{
    padding:24px;
}

.art-info h2{
    margin:0 0 12px;
    font-weight:400;
}

.art-info p{
    font-size:16px;
    line-height:1.6;
}

.art-info span{
    display:block;
    margin-top:15px;
    color:#777;
}

.art-info strong{
    display:block;
    margin-top:10px;
}
.art-card{
    color:#333;
    text-decoration:none;
}

.artwork-page{
    max-width:1200px;
    margin:0 auto;
    padding:70px 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.artwork-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 16px 45px rgba(0,0,0,0.12);
}

.artwork-text h1{
    font-size:52px;
    margin-bottom:25px;
}

.artwork-text p{
    font-size:18px;
}

.artwork-details{
    margin:30px 0;
}

@media(max-width:800px){
    .artwork-page{
        grid-template-columns:1fr;
        padding:40px 20px;
    }

    h1{
        font-size:42px;
    }
}
.admin-section,
.form-section{
    max-width:900px;
    margin:0 auto;
    padding:60px 30px;
}

.admin-list{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.admin-item{
    display:flex;
    gap:20px;
    align-items:center;
    background:white;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.admin-item img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:12px;
}

.art-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:30px;
}

.art-form input,
.art-form textarea,
.art-form select{
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.art-form textarea{
    min-height:150px;
    resize:vertical;
}

.art-form button{
    border:none;
    cursor:pointer;
    font-size:16px;
}
.admin-info{
    flex:1;
}

.admin-actions{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top:15px;
}

.edit-btn,
.delete-btn{
    padding:10px 18px;
    border-radius:8px;
    border:none;
    font-size:15px;
    text-decoration:none;
    cursor:pointer;
}

.edit-btn{
    background:#d4b06a;
    color:white;
}

.delete-btn{
    background:#7c2d2d;
    color:white;
}

.current-image img{
    max-width:220px;
    border-radius:12px;
    margin-top:10px;
}
.login-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-form{
    width:100%;
    max-width:420px;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    gap:18px;
}

.login-form h1{
    font-size:34px;
    margin:0 0 10px;
    text-align:center;
}

.login-form input{
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.login-error{
    color:#7c2d2d;
    font-size:16px;
    text-align:center;
}

.admin-header-links{
    display:flex;
    gap:24px;
}
.about-page{
    max-width:1200px;
    margin:0 auto;
    padding:60px 40px 90px;
}

.about-hero{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

.eyebrow{
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#9b7a3d;
}

.about-lead{
    font-size:22px;
    line-height:1.7;
    max-width:720px;
}

.about-photo{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-photo img{
    width:100%;
    max-width:450px;
    border-radius:28px;
    object-fit:cover;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.12);

    transition:0.3s;
}

.about-photo img:hover{
    transform:translateY(-5px);
}

.about-content{
    max-width:850px;
    margin:0 auto;
}

.about-content h2{
    font-size:36px;
    margin-top:55px;
}

.about-content p{
    font-size:19px;
    line-height:1.8;
}

blockquote{
    margin:40px 0;
    padding:30px;
    border-left:4px solid #d4b06a;
    background:white;
    border-radius:14px;
    font-size:22px;
    line-height:1.7;
}

@media(max-width:800px){
    .about-hero{
        grid-template-columns:1fr;
    }

    .about-page{
        padding:40px 20px;
    }
}
.hero-new{
    max-width:1300px;
    margin:0 auto;
    min-height:85vh;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;

    padding:60px 40px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    margin:20px 0;
}

.hero-text{
    font-size:22px;
    line-height:1.8;
    max-width:600px;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:520px;
    border-radius:30px;
    height:700px;
    object-fit:cover;
    object-position:center 35%;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.15);
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.btn-outline{
    padding:15px 35px;

    border:2px solid #d4b06a;

    border-radius:8px;

    color:#d4b06a;

    text-decoration:none;
}

.quote-section{
    max-width:1000px;
    margin:0 auto;
    padding:40px;
}

.quote-section blockquote{
    text-align:center;
    font-size:28px;
    line-height:1.8;
}

@media(max-width:900px){

    .hero-new{
        grid-template-columns:1fr;
        gap:40px;
        padding:30px 20px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-text{
        font-size:18px;
    }

    .quote-section blockquote{
        font-size:22px;
    }
}
.featured-section{
    max-width:1200px;
    margin:0 auto;
    padding:70px 40px 100px;
    text-align:center;
}

.featured-section h2{
    font-size:42px;
    margin:15px 0 45px;
}

.featured-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:28px;
    align-items:stretch;
}
.featured-grid .art-card{
    display:flex;
    flex-direction:column;
    min-height:560px;
}

.featured-grid .art-card img{
    height:260px;
    object-fit:cover;
}

.featured-grid .art-info{
    flex:1;
    display:flex;
    flex-direction:column;
}

.featured-grid .art-info h2{
    font-size:28px;
    line-height:1.15;
}

.featured-grid .art-info p{
    font-size:15px;
    line-height:1.55;
    max-height:120px;
    overflow:hidden;
}

.featured-grid .art-info span{
    margin-top:auto;
}

.featured-grid .art-card img{
    height:280px;
}

.featured-btn{
    display:inline-block;
}
.featured-section .eyebrow{
    text-align:center;
    display:block;
    margin:0 auto 12px;
}
.featured-grid{
    width:100%;
}
@media(max-width:1000px){
    .featured-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .featured-grid{
        grid-template-columns:1fr;
    }
}
.requests-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:30px;
}

.request-card{
    background:white;
    padding:24px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.request-card p{
    font-size:16px;
    margin:8px 0;
}