/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Cormorant Garamond', serif;
}

a { text-decoration: none; color: inherit; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #0a0a0a;
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 30px; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; } /* Warna Emas */

/* Hero Section */
header {
    height: 100vh;
    background: url('https://arts-sauts.org/img/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 20px;
    animation: fadeIn 2s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Buttons */
.btn-main {
    padding: 12px 30px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-main:hover {
    background: #fff;
    color: #000;
}

.btn-dark {
    padding: 12px 30px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

/* Sections */
.section { padding: 80px 5%; }
.container { max-width: 1100px; margin: 0 auto; }

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto 0;
}

/* About Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-box {
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Grid */
.dark-bg { background-color: #111; color: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-item:hover { background-color: #d4af37; color: #000; }

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    border: 1px solid #ccc;
    font-family: inherit;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #777;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplifikasi untuk mobile */
}