@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    #2f5c24 0%,
    #40513b 50%,
    #2a3f2a 100%
  );
  color: #e6efe3;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(230, 239, 227, 0.15);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="14" height="14" patternUnits="userSpaceOnUse"><path d="M14 0 L0 0 0 14" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.6"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.25;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(180, 210, 170, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(150, 190, 140, 0.06),
      transparent 55%
    );
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer-left p {
  color: rgba(230, 239, 227, 0.75);
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-right a {
  color: rgba(230, 239, 227, 0.75);
}
.footer-right a:hover {
  color: #ffffff;
}

.footer-right a::after {
  background: #b6d1b0;
}

.footer-right a:hover::after {
  width: 100%;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-right {
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-right a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-right {
    flex-direction: column;
    gap: 1rem;
  }
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #f59e0b;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-light: #ffffff;
  --bg-primary: #ffffff;
  --gallery-green: #2f5c24;
  --bg-secondary: #f4efe5;
  --bg-dark: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.95);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-elegant: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: "Segoe UI", "Poppins", "Libre Baskerville", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg-primary);
  font-weight: 400;

}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* teks saja yang pakai gradient */
.logo-text {
  font-family: "Libre Baskerville", serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: #1e421d;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
}


/* logo image */
.logo img {
  width: 50px; /* sesuaikan */
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav-links a {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  background: var( --gallery-green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-nav-links a:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-elegant);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 25s ease-in-out infinite;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: pulse 4s ease-in-out infinite alternate;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatShape2 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 25%;
  background: rgba(255, 255, 255, 0.12);
  animation: floatShape3 18s ease-in-out infinite;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 20%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  animation: floatShape4 22s ease-in-out infinite;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 15%;
  right: 40%;
  background: rgba(255, 255, 255, 0.15);
  animation: floatShape5 16s ease-in-out infinite reverse;
}

.shape-6 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  right: 10%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  animation: floatShape6 28s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
  }
  50% {
    transform: translateY(-15px) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-40px) translateX(15px) rotate(270deg);
  }
}

@keyframes floatShape2 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(25px) translateX(-20px) scale(1.1);
  }
  66% {
    transform: translateY(-20px) translateX(25px) scale(0.9);
  }
}

@keyframes floatShape3 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) translateX(-30px) rotate(180deg);
  }
}

@keyframes floatShape4 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(20px) translateX(-15px) rotate(45deg);
  }
  50% {
    transform: translateY(-10px) translateX(30px) rotate(90deg);
  }
  75% {
    transform: translateY(15px) translateX(-20px) rotate(135deg);
  }
}

@keyframes floatShape5 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-35px) translateX(20px) scale(1.2);
  }
}

@keyframes floatShape6 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(60deg);
  }
  66% {
    transform: translateY(10px) translateX(-25px) rotate(120deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.8;
  }
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  position: relative;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 8rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  background: #1e421d;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.about {
  position: relative;
  width: 100%;
  min-height: 460px;

  background-image: url("images/media-1-gallery.png");
  background-repeat: no-repeat;
  background-size: cover;

  /* ⬇️ penting untuk gambar 1280x591 */
  background-position: center top;

  background-color: #275626;
  background-blend-mode: soft-light;

  padding: 120px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 62, 42, 0.75); /* tidak terlalu gelap */
  z-index: 1;
}


/* Wrapper konten */
.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;   /* sebelumnya 900px → lebih lebar */
  text-align: center;
  color: #f2f6f3;
}

/* Judul */
.about h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 3.5rem;
  font-weight: 400;          /* lebih elegan */
  font-style: italic;        /* italic yang benar */
  letter-spacing: 0.6px;
  margin-bottom: 32px;
  color: #f1f5f1;
}

/* Paragraf */
.about p {
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about {
    background-image: url("images/media-4-gallery.png"); /* gambar khusus mobile */
    background-position: center center;
    background-size: cover;
    padding: 90px 20px;
  }
}


.skills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.skill-tag {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.skill-tag:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* gallery Section */
.gallery {
  background: #f4efe5;
}
.gallery-image {
  cursor: pointer;
}
.gallery .section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #2f5c24; /* hijau gelap */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 3rem;
}

.gallery-item {
  background: var(--gallery-green);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.gallery-item.animate {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-2xl);
}

.gallery-image {
  width: 100%;
  height: 180px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gallery-item:nth-child(1) .gallery-image {
  background-image: url("images/gallery-1.png");
}

.gallery-item:nth-child(2) .gallery-image {
  background-image: url("images/media-1-gallery.png");
}

.gallery-item:nth-child(3) .gallery-image {
  background-image: url("images/media-3-gallery.png");
}

.gallery-item:nth-child(5) .gallery-image {
  background-image: url("images/media-2-gallery.png");
}


/* Video styling */
.gallery-image.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.video-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}
.gallery-image.video {
  background: none !important;
}
.gallery-image.video::before {
  display: none;
}

.gallery-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image::before {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.4) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );
}

.gallery-content {
  padding: 2rem;
}

.gallery-content h4 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.35;
}


.gallery-content p {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.4rem;
  font-weight: 400;
}


.gallery-tech {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tech-tag {
  padding: 0.4rem 1rem;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  padding: 110px 0;
  background: #f4efe5;
  font-family: "Libre Baskerville", serif;
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.contact-info h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 700;
  color: #2f5c24;
  margin-bottom: 18px;
}

/* Contact items */
.contact-item {
  margin-bottom: 26px;
}

.contact-item span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7a9c80;
  margin-bottom: 6px;
}

.contact-info p,
.contact-item p {
  font-family: "Libre Baskerville", serif;
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 42px;
  color: #3f6b45;
}
.contact-item a {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  color: #1f3f1f;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #2f5c24;
}


/* Social */
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(47, 92, 36, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #2f5c24;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #2f5c24;
  color: #fff;
  transform: translateY(-3px);
}


/* =========================
   MAP STYLING
========================= */
.contact-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 92, 36, 0.15),
    rgba(0, 0, 0, 0.1)
  );
  pointer-events: none;
}

.contact-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 430px;
  border: none;
  filter: grayscale(70%) contrast(1.05);
  transition: filter 0.35s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%) contrast(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-map iframe {
    height: 320px;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }
}


.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.contact .section-title {
  color: var(--text-light);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  padding: 1.2rem 3rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 5rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text h3 {
    font-size: 2rem;
  }

  .skills {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}
/* ===== Reasons Section ===== */
.reasons {
  background: #b3d1ac;
  padding: 90px 0;
}

/* Wrapper */
.reasons-wrapper {
  display: flex;
  justify-content: center;
}

/* Text container */
.reasons-text {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

/* Subtitle → LIBRE */
.reasons-subtitle {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #3a5a40;
  letter-spacing: 0.6px;
  font-weight: 400;
}

/* Title → LIBRE */
.reasons-text h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1b3a1b;
}

/* Divider */
.reasons-text h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #1b3a1b;
  margin: 18px auto 0;
}

/* Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 48px;
  margin-top: 52px;
}

/* Item */
.reason-item {
  display: flex;
  gap: 18px;
  text-align: left;
}

/* Number → LIBRE */
.reason-item span {
  font-family: "Libre Baskerville", serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #1b3a1b;
}

/* Heading item → LIBRE */
.reason-item h4 {
  font-family: "Libre Baskerville", serif;
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b3a1b;
}

/* Paragraph → POPPINS (SATU-SATUNYA) */
.reason-item p {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #355f3b;
}

/* Responsive */
@media (max-width: 900px) {
  .reasons-text h3 {
    font-size: 2.2rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }
}


/* product section */
.product {
  background: #40513b;
  color: #cfe3c2;
  padding: 100px 0;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}

.product-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2.6rem;
  font-style: italic;
  margin-bottom: 16px;
}

.product-desc,
.product-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #b6d1b0;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}


.product-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.product-card {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cfe3c2;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-arrow {
  background: none;
  border: none;
  color: #cfe3c2;
  font-size: 2rem;
  cursor: pointer;
  font-family: "Libre Baskerville", serif;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-arrow:hover {
  transform: scale(1.2);
  opacity: 0.7;
}


.product-name {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #cfe3c2;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}


.product-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #cfe3c2;
  border-radius: 30px;
  color: #cfe3c2;
  text-decoration: none;
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: #cfe3c2;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .product-wrapper {
    gap: 20px;
  }

  .product-card {
    width: 200px;
    height: 200px;
  }
}

.product-card img {
  transition: opacity 0.3s ease;
}
/* hero section */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("images/background-home.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ⬅️ PENTING */
  padding: 0 8%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(188, 220, 182, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: left;
  color: #1b3a1b;
  margin-top: 55px; /* atur 40–80px sesuai selera */

}

/* H1 → LIBRE */
.hero-content h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-weight: 400; /* ⬅️ TIDAK BOLD */

}

/* Subtitle italic */
.hero-content h1 span {
  font-style: italic;   /* ⬅️ italic */
  font-weight: 400;     /* tetap ringan */
  display: inline-block;
}


/* Paragraph → POPPINS */
.hero-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2f4f2f;
  font-weight: 400;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 6%;
  }
  .hero-content {
    margin-top: 30px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content h1 span {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-BlackItalic.woff2') format('woff2'),
        url('Poppins-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraBoldItalic.woff2') format('woff2'),
        url('Poppins-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraBold.woff2') format('woff2'),
        url('Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Black.woff2') format('woff2'),
        url('Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.woff2') format('woff2'),
        url('Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-BoldItalic.woff2') format('woff2'),
        url('Poppins-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Light.woff2') format('woff2'),
        url('Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-LightItalic.woff2') format('woff2'),
        url('Poppins-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraLightItalic.woff2') format('woff2'),
        url('Poppins-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Italic.woff2') format('woff2'),
        url('Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraLight.woff2') format('woff2'),
        url('Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Medium.woff2') format('woff2'),
        url('Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2'),
        url('Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('Poppins-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ThinItalic.woff2') format('woff2'),
        url('Poppins-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Thin.woff2') format('woff2'),
        url('Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-MediumItalic.woff2') format('woff2'),
        url('Poppins-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBold.woff2') format('woff2'),
        url('Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}