@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffe7f2, #e0f7ff);
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

header .logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #fff;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  object-fit: cover; /* biar proporsinya bagus */
  image-rendering: -webkit-optimize-contrast; /* bantu tajemin */
  image-rendering: crisp-edges;
}


/* Intro Section */
.intro {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.6);
  margin: 20px auto;
  border-radius: 15px;
  max-width: 1000px;
}

/* Two Column Layout */
.two-column {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.content-column {
  flex: 1;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-column img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.contact-info {
  margin-top: 30px;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ff9a9e;
}

/* Contact Form Styles */
.contact-section {
  text-align: left;
  max-width: 800px;
}

.contact-description {
  margin: 20px 0;
  color: #333;
}

.contact-description a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-description a:hover {
  color: #ff9a9e;
}

.contact-form {
  margin-top: 30px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff9a9e;
  box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.2);
}

.send-button {
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.send-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

.form-note a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.form-note a:hover {
  color: #ff9a9e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }
  
  .image-column {
    order: -1;
    margin-bottom: 20px;
  }
  
  .intro {
    padding: 30px 15px;
  }
  
  .contact-section {
    padding: 20px;
  }
  
  .form-field input,
  .form-field textarea {
    font-size: 16px; /* Prevents zoom on mobile */
  }
}

/* Boxes Section */
.boxes {
  text-align: center;
  padding: 30px 0;
}

.boxes h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #444;
}

.songs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}

.box {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 15px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}


.box img {
  width: 100%;
  border-radius: 15px;
}

.box p {
  margin-top: 10px;
  font-size: 1rem;
  color: #000000;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* Box Colors */
.box1 {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.box2 {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}

.box3 {
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
}

.box4 {
  background: linear-gradient(135deg, #fddb92, #d1fdff);
}

.box5 {
  background: linear-gradient(135deg, #fbc7aa, #ff9a9e);
}

.box6 {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.box a {
  text-decoration: none;
  color: #000; 
}

.box a:visited {
  color: #000;
}

.box a:hover {
  color: #555;
}


/* Draw Area Section */
.draw-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 400px;
}

.draw-area h3 {
  margin-bottom: 15px;
  color: #333;
}

/* Canvas style */
#drawCanvas {
  border: 2px solid #ccc;
  border-radius: 10px;
  background: #fff;
  cursor: crosshair;
}

/* Controls (clear + color picker) */
.controls {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.controls button {
  background: #ff9a9e;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.controls button:hover {
  background: #ff7b89;
}

.controls input[type="color"] {
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  background: none;
}

/* Send message area */
.send-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 60px auto;
  gap: 10px;
}

.send-area input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 250px;
}

.send-area button {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.send-area button:hover {
  background: linear-gradient(90deg, #89f7fe, #66a6ff);
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #fad0c4, #ffd1ff);
  font-size: 0.9rem;
}

.subtitle { color: var(--muted); font-size: 0.95rem; }

.hero-box {
    margin-bottom: 24px;
    padding: 24px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.profile-card {
    text-align: center;
}

.profile-img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.skills-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.skills-container {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 18px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
}

.skills-container h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.skill-card {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    border: 1px solid rgba(230,230,230,0.9);
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

.skill-bar div {
    height: 100%;
    background: #f5c400;
    border-radius: 10px;
    transition: width 1s ease;
}

.social-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 8px 15px;
    border-radius: 8px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
    border: 1px solid #333;
}

.social-btn:hover {
    background: #444;
    transform: translateY(-2px);
}
