/* --- 1. GLOBAL RESET & BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Calibri", 'Inter', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #fcfcfc;
  padding: 2rem 5%; /* Gives the whole page breathing room */
}

/* --- 2. HEADERS --- */
h1 {
  text-align: center;
  color: #C5D3E8;
  font-family: sans-serif;
  padding: 15px;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}

h2 {
  color: white;
  background-color: #C5D3E8;
  text-align: center;
  font-family: sans-serif;
  padding: 10px;
}

p {
  padding-top: 10px;
  font-size: 1.1rem;
}

/* --- 3. ORIGINAL NAVIGATION BAR --- */
ul {
  list-style-type: none;
  background-color: #C5D3E8;
  display: flex;
  justify-content: center;
  max-width: 100%; 
  margin-bottom: 2rem;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.1s ease-in-out;
}

ul li a:hover {
  background-color: #b0c2de; /* Slightly deeper tint for the hover effect */
  transform: scale(1.05);
}

/* --- 4. THE FLEXBOX SPLIT LAYOUT (Text & Selfie) --- */
.flex-container {
  display: flex;
  flex-direction: column; /* Default to stacked for mobile screens */
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
}

.column-left {
  flex: 1;
  min-width: 300px;
}

.column-left p {
  margin-bottom: 1.5rem;
}

.column-right {
  flex: 0 0 250px; /* Keeps the selfie container exactly 250px wide */
  display: flex;
  justify-content: center;
}

/* Responsive Image Handling */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* Gives your picture a modern rounded edge */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft professional shadow */
}

/* --- 5. SOCIAL LINKS & FOOTER --- */
.child {
  display: flex;
  flex-direction: column; 
  align-items: center;
  padding: 10px;
  width: 100%;
  justify-content: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px); /* Subtle modern lift effect */
}

footer {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* --- 6. FORMS & CONTACT PAGE STYLES --- */
.contact-form {
  display: flex;
  flex-direction: column;
}

input[type="text"], 
input[type="email"], 
textarea,
button[type="submit"] {
  border: 4px solid #C5D3E8;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 600px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}

textarea {
  min-height: 150px;
}

button[type="submit"] {
  appearance: none;
  background-color: #C5D3E8;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.1s ease-in-out;
}

button[type="submit"]:hover {
  transform: scale(1.05);
}

/* --- 7. RESUME PAGE CONTAINER --- */
.resume-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%; 
  height: auto; 
  image-rendering: -webkit-optimize-contrast;
}

/* --- 8. RESPONSIVE MEDIA QUERY --- */
/* When the screen is wider than 768px (Desktop/Tablets), snap things side-by-side */
@media (min-width: 768px) {
  .flex-container {
    flex-direction: row; 
    align-items: flex-start;
    gap: 4rem;
  }
}

/* --- Fix for Social Media Icons --- */
.social-links {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  width: 100%;
}

.social-links a {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.social-links a:hover {
  transform: scale(1.15) translateY(-3px); /* Makes them pop out and lift up on hover */
}

.social-links i {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif !important;
}



