/* ===== GENERAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* Enhanced Parallax Sections */
    .parallax-section {
      height: 100vh;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      overflow: hidden;
    }

    .parallax-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(18, 92, 156, 0.85);
      z-index: 1;
    }

    .parallax-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
    }


/* ===== HERO SECTION ===== */
.hero-section {
    background-image: url("../images/kunjungan_timo.jpg");
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ===== AOS ANIMATION SUPPORT ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== BUTTON STYLES ===== */
.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: #0d6efd !important;
}

.bg-primary {
    background-color: #0d6efd !important;
}

/* ===== FOOTER ===== */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

footer a {
    color: #ecf0f1;
}

footer a:hover {
    color: #bdc3c7;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        padding-top: 15px;
    }
}

/* ===== GSAP TARGET ELEMENTS ===== */
.hero-section h1,
.hero-section p,
.hero-section .btn {
    opacity: 3; /* Akan dianimate oleh GSAP */
}

/* ===== FORM STYLES ===== */
.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* ===== ANIMATION DELAYS ===== */
/* Untuk GSAP sequence animation */
[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}