/* ─── GLOBAL ─── */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; /* if you still need to hide horizontal scroll */
}
main {
  flex: 1;
}

footer {
  width: 100%;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
}
.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Header Bar */
.header-bar {
  width: 100%;
  max-width: 1440px;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu, .contact-socials, .phone {
  font-size: 20px;
}

.phone { margin-left: 20px; }

.menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #000;
  padding: 0;
}

/* Navbar */
.navbar {
  width: 100vw;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-left, .nav-right {
  font-size: 20px;
}
.nav-right .phone {
  margin-left: 20px;
}

/* .footer {
  width: 100vw;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  margin-top: 60px;
}
.footer-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left, .footer-right {
  font-size: 20px;
}
.footer-right .phone {
  margin-left: 20px;
}
.copyright {
  color: #000;
} */

/* About Kevin Title */
.about-title {
  font-size: 3vw;
  font-weight: 400;
  margin: 80px 0 24px 5vw;
  max-width: 900px;
}

/* About Kevin Description */
.about-description {
  display: block;
  /* align-items: flex-start; */
  gap: 40px;
  max-width: 1200px;
  margin: 40px 5vw;
  flex: 2 1 0;
  font-size: 1.5vw;
  max-width: 700px;
  line-height: 1.5;
  margin: 0;
}

/* ─── 1. Centered, capped container ─── */
.about-content {
  display: flex;
  align-items: flex-start; 
  gap: clamp(1rem, 5vw, 3rem); 
  
  /* keep the whole block from getting too wide */
  max-width: 1200px;
  margin: clamp(1rem, 5vw, 3rem) auto; 
  width: 100%;
  box-sizing: border-box;
}

/* ─── 2. Flexible, readable text ─── */
.about-description {
  flex: 1 1 auto;
  min-width: 0;                              
}

/* ─── 3. Image that never invades the text area ─── */
.profile-img {

  flex: 0 0 clamp(200px, 30%, 800px);
  aspect-ratio: 1 / 1.5;                       /* keeps it square */
  background: url('../SRC/images/IMG_1435.JPG') no-repeat center center;
  background-size: cover;
  border-radius: 16px;
}



.dropdown-menu {
  display: none;
  position: fixed;      /* ← make it stick to the viewport */
  top: 60px;            /* same offset below your sticky header */
  left: 40px;           /* adjust as needed to line up under “Menu” */
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  min-width: 200px;
  z-index: 999;
  flex-direction: column;
}

.dropdown-menu a {
  display: block;
  padding: 16px 24px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu.show {
  display: flex;
}


@media (max-width: 900px) {
  .about-title { font-size: 28px; margin: 60px 0 16px 6vw; }
  .about-description { font-size: 16px; margin-left: 6vw; }
  .profile-img { width: 90vw; height: 60vw; margin: 24px 5vw; }
  .about-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 24px 6vw;
  }
  .profile-img {
    width: 100%;
    max-width: 100%;
    height: 50vw;
    min-height: 200px;
  }
  .about-description {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .profile-img {
    position: relative;
    left: 200px; /* Move the image 80px to the right */
  }
}


.footer {
  width: 100vw;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  margin-top: 500px;
}
/* 
.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px;
}

.footer-left, .footer-right {
  font-size: 18px;
}

.footer-right .phone {
  margin-left: 20px;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-left, .footer-right {
    font-size: 16px;
  }
} */