/* Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #fdfaf7;
    color: #3a2e25;
  }
  
  /* Header / Hero */
  .hero {
    background: linear-gradient(to right, #d2b48c, #f9f1e7, #d2b48c);
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4b2e1f;
  }
  
  .contact {
    font-size: 1.2rem;
    margin-top: 0.8rem;
    font-weight: 500;
  }
  
  /* Container */
  .container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  /* Profile Image */
  .profile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #a67b5b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
  }
  
  .profile img:hover {
    transform: scale(1.1);
  }
  
  /* Section Titles */
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #4a3527;
    border-bottom: 2px solid #c2a489;
    padding-bottom: 0.3rem;
    transition: color 0.3s ease-in-out;
  }
  
  h2:hover {
    color: #a67b5b;
  }
  
  /* Lists */
  ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Portfolio Grid */
  .portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .portfolio img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .portfolio img:hover {
    transform: scale(1.05);
  }
  
  /* Button */
  .btn {
    display: inline-block;
    background-color: #a67b5b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease-in-out;
  }
  
  .btn:hover {
    background-color: #8b664c;
  }
  
  /* Scroll Fade Animation */
  .fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }
  
  .fade-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 2rem;
    }
    .profile img {
      width: 130px;
      height: 130px;
    }
    h2 {
      font-size: 1.5rem;
    }
  }
  