/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Styles for the Main page */
.hero-bg {
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
}
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: #FF8C00; /* Main accent orange */
    font-size: 1.25rem; /* Equivalent to Tailwind's text-xl */
}

.box-title {
  font-size: 1.5rem; /* Corresponds to text-2xl */
  font-weight: 700; /* Corresponds to font-bold */
  margin-bottom: 0.75rem; /* Corresponds to mb-3 */
  color: #111827; /* Corresponds to text-gray-900 */
  line-height: 2rem;
}


/* Styles for the About Me page */
.about-section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 2rem auto;
  text-align: center;
}

/* Main about card */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem; 
  /* margin-top is now handled by the parent section's padding */
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  margin-bottom: 40px;
}

.about-image {
  width: 220px;
  height: 220px;
  flex-shrink: 0; /* Prevents the image container from being resized by flexbox */
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* New info boxes section */
.info-boxes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 50px;
}

.info-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    max-width: 400px;
    border-left: 4px solid #FF8C00; /* Accent color */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.05);
}

.info-box h3 {
    margin-top: 0;
}

.contact-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 107, 0, 0.6);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .info-boxes {
      flex-direction: column;
      align-items: center;
  }
}
