/* ============================================
   CV. ALFA OMEGA TEKNIK - Custom Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@700&display=swap');

.tail-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-link {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: rgb(212 175 55);
    transform: translateY(-1px);
}

.service-card {
    background-color: rgba(15, 23, 42, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.12);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.gradient-gold {
    background: linear-gradient(135deg, #d4af37, #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.corporate-shadow {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
                0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.gold-accent {
    color: #d4af37;
}

.stat-box {
    transition: transform 0.2s ease;
}

.mission-item {
    transition: all 0.2s ease;
}

.mission-item:hover {
    transform: translateX(6px);
}

/* Visi section - balanced line height */
#visi-misi .text-\[15px\] p {
    line-height: 1.75;
}

/* ============================================
   Hero Parallax (Scroll Only)
   ============================================ */

.parallax-bg {
  will-change: transform;
  background-position: center;
  background-size: cover;
  transition: transform 0.08s linear;
}

/* ============================================
   Project Gallery & Modal
   ============================================ */

.project-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.project-item img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Styles */
#image-modal {
    animation: fadeIn 0.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#modal-image {
    max-height: 80vh;
    object-fit: contain;
}

.modal-content {
    animation: zoomIn 0.25s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}