/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f6fa;
    color: #333;
  }


  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(12, 12, 12, 0.8), rgba(48, 80, 77, 0.8)), 
                url('hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    perspective: 1000px;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

    
  .hero img {
    width: 300px;
    animation: rotatePause 6s infinite;
    transform-style: preserve-3d;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  @keyframes rotatePause {
    0%   { transform: rotateY(0deg); }
    40%  { transform: rotateY(180deg); }
    50%  { transform: rotateY(180deg); } /* berhenti sejenak */
    90%  { transform: rotateY(360deg); }
    100% { transform: rotateY(360deg); } /* berhenti sejenak */
  }
  
  .btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn {
    background: #ff6b35;
    color: #fff;
  }
  
  .btn:hover {
    background: #e85a2a;
  }
  
  .btn-secondary {
    background: #0a3d62;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background: #082c47;
  }
  
  /* Section umum */
  section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #080808;
  }
  
   /*about */
  #about {
    padding: 60px 20px;
    background: #f5f6fa;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
  }
  
  .about-text ul {
    margin: 20px 0;
    padding-left: 20px;
  }
  
  .about-text ul li {
    margin-bottom: 10px;
    list-style: disc;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-image {
      margin-top: 20px;
    }
  }
  
  /* Services */
  #services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
  }
  
  #services li {
    background: #fff;
    margin: 10px;
    padding: 20px;
    flex: 1 1 200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: bold;
  }
  
  /* Portfolio */
  #portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  #portfolio .card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  #portfolio .card:hover {
    transform: translateY(-5px);
  }
  
  /* Contact */
  #contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
  }
  
  #contact input, 
  #contact textarea {
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #contact button {
    background: #0a3d62;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #contact button:hover {
    background: #2a2b2c;
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    section {
      padding: 40px 15px;
    }
  }