/* ===========================
   GLOBAL RESET & BASE STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
}

.nav a {
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #6c63ff;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #6c63ff 0%, #a29bfe 100%);
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.1rem;
    background-color: #fff;
    color: #6c63ff;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #f1f1f1;
}

/* ===========================
   SECTIONS (ABOUT, SERVICES, EVENTS, TESTIMONIAL, BLOG)
=========================== */
.section {
    padding: 80px 20px;
}

.section.gray {
    background-color: #f5f5f5;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6c63ff;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5548d6;
}

/* Testimonial */
blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    color: #555;
}

blockquote::before {
    content: "“";
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -10px;
    color: #6c63ff;
}

.author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

/* Blog Posts */
.post {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.post:hover {
    transform: translateY(-5px);
}

.post h3 {
    margin-bottom: 10px;
}

.post p {
    margin-bottom: 15px;
}

.post .link {
    color: #6c63ff;
    font-weight: bold;
}

.post .link:hover {
    text-decoration: underline;
}

/* ===========================
   CONTACT SECTION
=========================== */
#contacto {
    text-align: center;
    padding: 80px 20px;
    background-color: #f5f5f5;
}

#contacto h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

#contacto p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

#contacto .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    margin-bottom: 20px;
    text-decoration: none;
    background-color: #6c63ff;
    color: #fff;
    border-radius: 8px;
    transition: background 0.3s ease;
}

#contacto .btn-primary:hover {
    background-color: #5548d6;
}

/* Kontak detail */
#contacto .contact-details p {
    margin: 5px 0;
    font-size: 1rem;
}

/* Map */
#contacto .map-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Layout flex untuk desktop */
#contacto .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

#contacto .contact-wrapper .contact-details {
    flex: 1;
}

#contacto .contact-wrapper .map-container {
    flex: 2;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background-color: #6c63ff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    #contacto .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    #contacto .contact-wrapper .map-container,
    #contacto .contact-wrapper .contact-details {
        flex: unset;
        width: 100%;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }
}
