/* style.css untuk DESIGNARY Web Portfolio */

/* Glassmorphism card example */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Portfolio card example */
.portfolio-card {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.17);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Fade-in animation for scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Responsive tweaks (if needed) */
@media (max-width: 640px) {
  .glass-card, .portfolio-card {
    border-radius: 8px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=Inter:wght@300;400&family=Playfair+Display:wght@400;600&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #E0E0E0;
    overflow-x: hidden;
}
.font-sora {
    font-family: 'Sora', sans-serif;
}
.font-playfair {
    font-family: 'Playfair Display', serif;
}
.hero-bg {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}
#video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    filter: brightness(0.4);
}
#three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.glass-card {
    background: rgba(16, 16, 16, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.3);
}
.highlight-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-15px);
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
