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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fdfbf7;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #d4af37;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

.hero {
    text-align: center;
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0e 50%, #1a1a1a 100%);
    color: #d4af37;
    border-bottom: 3px solid #d4af37;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #c9b06b;
    font-style: italic;
}

.tentang, .karya, .pameran, .hubungi {
    padding: 5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.tentang h2, .karya h2, .pameran h2, .hubungi h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #8b6914;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.profile-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #d4af37;
}

.stat-label {
    display: block;
    margin-top: 0.25rem;
    color: #c9b06b;
    font-size: 0.9rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8dcc8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.75rem;
    color: #8b6914;
    font-size: 1.2rem;
}

.card p {
    color: #555;
    font-size: 0.95rem;
}

.galeri {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    background: #1a1a1a;
    color: #d4af37;
    font-size: 0.95rem;
    font-style: italic;
}

.pameran {
    background: #f5f0e6;
    max-width: 100%;
    padding: 5rem 2rem;
}

.pameran > h2 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.pameran .card-grid {
    max-width: 950px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8dcc8;
}

.info-item h4 {
    color: #8b6914;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #555;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: #d4af37;
}
