@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Navigation Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links li a.active {
    font-weight: 700;
}

.nav-links li a:hover {
    font-weight: 700;
}

/* Font Defaults */
body {
    margin: 0;
    padding: 0;
    font-family: 'Baloo Thambi 2', cursive;
    background: linear-gradient(to right, #f1f1eb, #e4e4d9);
    color: #1f1f1f;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px;
    flex-wrap: wrap; 
    background-color: #CFD3BE; 
    color: #1f1f1f; 
    position: relative; 
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

/* Image Section */
.hero-image {
    position: relative;
    flex: 1;
    z-index: 2;
    max-width: 450px;
}

.hero-image img {
    width: 400px; 
    height: 500px; 
    max-width: 100%; 
    max-height: 600px; 
    border-radius: 40px;
    z-index: 2;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover; 
}

/* Blur background image (light glow) */
.hero-image::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120%;
    height: 120%;
    background: url('images/foto-1.jpg') no-repeat center center / cover;
    filter: blur(60px) brightness(1.2);
    border-radius: 200px;
    z-index: 0;
    opacity: 0.9;
}

/* Elemen tambahan dekoratif */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #b2bfa2 0%, #dbe5cb 100%);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 1;
}

.hero-decor-shape {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #b9c6ae, #e2f0d1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    opacity: 0.6;
}

/* Text Section */
.hero-text {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Bigshot One', cursive;
    font-size: 60px;
    margin: 0;
    line-height: 1.1;
    font-weight: bold;
}

.hero-text h2 {
    font-family: 'Bigshot One', cursive;
    font-size: 48px;
    margin-top: 5px;
    color: #374831;
}

.subtitle {
    font-weight: 500;
    margin-top: 15px;
    color: #444;
    font-size: 16px;
}

.description {
    margin: 25px 0;
    line-height: 1.6;
    font-size: 18px;
    font-family: 'Baloo Thambi 2', cursive;
    font-weight: 600;
    color: #222;
}

/* Social Links */
.social-links {
    margin: 30px 0;
}

.social-links a {
    margin-right: 30px;
    font-size: 22px;
    color: #1f1f1f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #5e6650;
    transform: scale(1.2);
}

/* Button */
.cta-button {
    padding: 12px 24px;
    text-decoration: none;
    background-color: #5e6650;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #23291c;
}

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Apply Animations */

/* Fade in to hero section */
#hero, #quote, #portfolio, #tools, #gallery {
  animation: fadeIn 1s ease-out both;
}

/* Decorative background elements */
.profile-backdrop {
    position: absolute;
    border-radius: 30px;
    z-index: 1;
}

/* Top right decorative element */
.backdrop-1 {
    width: 70%;
    height: 100%;
    background-color: #a9b18a;
    top: -0px;
    right: -0px;
    transform: rotate(5deg);
    opacity: 0.7;
}

/* Bottom left decorative element */
.backdrop-2 {
    width: 70%;
    height: 100%;
    background-color: #7e8a69;
    bottom: -10px;
    left: -10px;
    transform: rotate(-3deg);
    opacity: 0.5;
}

.dot-pattern {
    display: none;
}

/* Hover effect on image wrapper */
.profile-image-wrapper {
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.profile-image-wrapper:hover {
    transform: translateY(-5px);
}

.profile-image-wrapper:hover img {
    transform: scale(1.02);
}


/* Responsive */
@media (max-width: 992px) {
    #hero {
        padding: 40px 30px;
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 64px;
    }

    .hero-text h2 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 20px; 
    }

    .hero-decor-shape {
        display: none;
    }
}


/* Quote Section */
#quote {
    text-align: center;
    margin: 100px 0;
}

#quote h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
}

#quote p {
    font-weight: 950;
    color: #473e3e;
}


/* Portofolio Section */
#portfolio {
    margin: 80px 0;
    padding: 5px 40px 80px;
    text-align: center;
    background-color: #CFD3BE; 
  }
  
  #portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .portfolio-item img:hover {
    transform: scale(1.03);
  }
  
  .portfolio-button {
    text-align: center;
  }
  
  .view-all {
    background-color: #5e6650;
    text-decoration: none;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .view-all:hover {
    background-color: #46503d;
  }  
  

/* Tools Section */
#tools {
  padding-top: 0px;
  padding-right: 40px;
  padding-bottom: 70px;
  padding-left: 40px;
}

  
  .tools-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  
  .tools-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    font-weight: bold;
    margin: 0;
  }

  .large-text {
    font-size: 100px;
  }
  
  .tools-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 5;
  }
  
  .tool-item {
    background-color: #737d5d;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .tool-item i {
    font-size: 80px;
  }
  
  .tool-item:hover {
    transform: scale(1.05);
  }
  
  .tools-button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
  }
  
  .see-more {
    background-color: #5e6650;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }

  .see-more:hover {
    background-color: #46503d;
  }  


/* Gallery */
#gallery {
    margin: 0;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 0px;
    margin-right: 0px;
  }
  
  #gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .gallery-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .gallery-item {
    width: 350px;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .gallery-item p {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    margin-top: 6px;
    color: black;
  }

  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-button {
    text-align: right;
    margin-top: 30px;
    padding-right: 60px;
  }
  
  .see-more {
    background-color: #5e6650;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  
  footer {
    background-color: #ffffff;
    padding: 30px 6%;
    font-family: 'Playfair Display', serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* LOGO + ICON */
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo img {
    width: 140px; /* Lebih besar dari sebelumnya */
    margin-bottom: 15px;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 1.3rem;
    color: #2f2f2f;
  }
  
  /* NAVIGASI */
  .footer-nav-title {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer-links {
    display: flex;
    gap: 25px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 6px;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
  }
  
  /* KONTAK */
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
  }
  
  .contact-item i {
    margin-right: 10px;
    color: #2f2f2f;
  }
  
  /* COPYRIGHT */
  .copyright {
    text-align: center;
    padding: 12px;
    font-size: 0.8rem;
    color: #5e6650;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .footer-contact {
      align-items: center;
    }
  
    .social-icons {
      justify-content: center;
      margin-top: 10px;
    }
  }
  
  