/* ===== BODY & GENERAL ===== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #222;
}

.page-content {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

/* ===== HEADER & NAV ===== */
header {
  margin-bottom: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: auto;
  padding: 2rem;
}

.logo img {
  height: 50px;
  width: auto;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* ===== FULL-WIDTH SECTIONS ===== */
section.full-width {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  background: url('/assets/images/fsae_ic_25_00446.jpg') center/cover no-repeat;
  padding: 100px 20px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.2rem;
}

/* ===== BANNER SECTION ===== */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.banner-content {
  position: relative;
  width: 100%;
}

.banner-content h1 {
  font-size: 3rem;
  margin: 0;
}

.banner-content p {
  font-size: 1.5rem;
  margin: 0;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: #000;
  color: #fff;
  padding: 4rem 0;
}

.experience-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.experience-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.experience-logos img {
  height: 120px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.experience-card {
  background: #ccc;
  color: #222;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem 1.5rem;
}

.card-company {
  font-size: 0.85rem;
  color: #555;
}

.card-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: bold;
}

.card-date {
  font-size: 0.8rem;
  color: #777;
}

.learn-more-btn {
  margin: auto 1rem 1rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid #000;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.learn-more-btn:hover {
  background: #000;
  color: #fff;
}

/* ===== COLLECTION & PROJECT GRID ===== */
.collection-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 20px;
}

.collection-item,
.project-item {
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 2px solid #e9e9e9;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}

.collection-item:hover,
.project-item:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.overlay-content {
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.3s;
}

.collection-item:hover .overlay,
.project-item:hover .overlay {
  background: rgba(0,0,0,0.5);
}

.collection-item:hover .overlay-content,
.project-item:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

/* ===== OVERVIEW WITH LOGO ===== */
.overview-block {
  display: flex;
  gap: 2rem;
}

.overview-logo {
  flex: 0 0 150px;
}

.overview-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;

}

.overview-text {
  flex: 1;
}

/* ===== EXPERIENCE PAGES: CAROUSEL ===== */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 2rem;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.figure-caption {
  margin-top: 0;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0 0.6rem;
  cursor: pointer;
  border-radius: 6px;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}


/* ===== ABOUT PAGE ===== */
.about-page {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.about-container {
  display: flex;
  gap: 3rem;
}

.profile-picture {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
}
/* ===== PROJECT TAG ===== */
.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ===== TABLET ===== */
@media (max-width: 1200px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    margin: 0 0.75rem;
  }

  .hero-content h1,
  .banner-content h1 {
    font-size: 2rem;
  }

  .hero-content p,
  .banner-content p {
    font-size: 1rem;
  }

  .experience-logos {
    gap: 1.5rem;
  }

  .experience-logos img {
    height: 60px;
  }

  .experience-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 1.25rem;
  }

  .experience-card .card-image img {
    height: 150px;
  }

  .collection-item,
  .project-item {
    height: 180px;
  }

  .project-item .overlay,
  .collection-item .overlay {
    background-color: rgba(0,0,0,0.5);
  }

  .project-item .overlay-content,
  .collection-item .overlay-content {
    opacity: 1;
    transform: translateY(0);
  }

  .overlay-content h3 {
    font-size: 1.2rem;
  }

  .overview-block {
    flex-direction: column;
    gap: 0;
  }

  .overview-logo {
    display: flex;
    justify-content: center;
  }

  .overview-logo img {
    max-width: 50%;
    max-height: 150px;
  }

  .overview-text {
    text-align: left;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .bio-section {
    text-align: left;
  }

  .contact-info a {
    text-decoration: underline;
  }

  .coming-soon {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
}

/* ===== TOOLS AND SKILLS ===== */
.tools-skills-highlight {
  background-color: #bbbbbb;
  color: #000;
  padding: 0.1rem 2rem;
  border-radius: 16px;
  max-width: 800px;
  margin: 4rem auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.tools-skills-lists {

  justify-content: left;
  gap: 1rem;
}

.tools-skills-lists h3 {
  font-size: 1.6rem;
  margin-bottom: 0.1rem;
  color: #000;
}

.tools-skills-lists ul {
  list-style: disc;
  padding-left: 1.5rem;
  text-align: left;
  column-count: 1;
  margin-top: 0;
}

/* ===== TABLET (iPad) ===== */
@media (max-width: 1200px) {
  .tools-skills-lists {
    flex-direction: column;
  }

  .tools-skills-lists h3 {
    font-size: 1.4rem;
  }

  .tools-skills-lists ul {
    padding-left: 1rem;
  }
}

/* ===== MOBILE (iPhone) ===== */
@media (max-width: 600px) {
  .tools-skills-lists h3 {
    font-size: 1.2rem;
  }

  .tools-skills-lists ul {
    padding-left: 0.75rem;
  }
}


/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .page-content {
    padding: 1.25rem;
  }

  .logo img {
    height: 44px;
  }

  .hero {
    padding: 80px 16px;
  }

  .hero-content h1,
  .banner-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p,
  .banner-content p {
    font-size: 0.95rem;
  }

  .experience-section {
    padding: 3rem 0;
  }

  .experience-logos img {
    height: 48px;
  }

    .experience-grid {
    grid-template-columns: repeat(1,1fr);
    gap: 1.25rem;
  }

  .collection-item,
  .project-item {
    height: 165px;
  }

  .overlay {
    background-color: rgba(0,0,0,0.55);
  }

  .overlay-content {
    opacity: 1;
    transform: none;
  }

  .overlay-content h3 {
    font-size: 1.1rem;
  }

  .project-tag {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .profile-picture {
    width: 200px;
    height: 200px;
  }

  .coming-soon {
    font-size: 0.95rem;
    padding: 1.25rem 1rem;
  }
}

/* ===== TABLET / MOBILE CAROUSEL ===== */
@media (max-width: 1200px) {
  .carousel {
    max-width: 100%;
    margin: 1.5rem auto;
  }

  .carousel-slide img {
    max-height: 50vh;
  }
}

@media (max-width: 600px) {
  .carousel-slide img {
    max-height: 35vh;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 0 0.4rem;
  }
}

/* ===== PROFILE CARD CENTERING ON TABLET & MOBILE ===== */
@media (max-width: 1200px) {
  .profile-card {
    display: flex;
    flex-direction: column; /* stack image above contact info */
    align-items: center;    /* center horizontally */
    text-align: center;     /* center the text inside */
    gap: 1rem;              /* spacing between image and info */
    margin: 0 auto;         /* center in container */
  }

  .profile-picture {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .profile-picture {
    width: 180px;
    height: 180px;
  }
}


.coming-soon { 
  flex: 1 1 100%; /* takes full width on mobile */ 
  max-width: 500px; /* limits width on large screens */ 
  box-sizing: border-box; 
  padding: 2rem 1.5rem; 
  margin: 0 auto; /* centers horizontally */ 
  text-align: center; 
  font-size: 1.25rem; 
  font-weight: bold; 
  color: #555; 
  border: 2px dashed #aaa; 
  border-radius: 12px; 
  background-color: #f9f9f9; 
  overflow-wrap: break-word; /* prevents text overflow */ 
}

@media (max-width: 1200px) { .coming-soon { font-size: 1rem; padding: 1.5rem 1rem; } }