/* ===================================
   BOOTSTRAP CUSTOM VARIABLES
   =================================== */
:root {
  --primary-color: #046263;
  --secondary-color: #FB8D22;
  --accent-color: #bd6716;
  --dark-bg: #0b3637;
  --light-text: antiquewhite;
  --transition: all 0.3s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', 'Raleway', 'Lora', sans-serif;
  background-color: var(--primary-color);
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: var(--secondary-color);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  color: var(--accent-color);
}

/* ===================================
   HEADER / NAVBAR - CENTERED & FIXED
   =================================== */
header.navbar {
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
}

/* Override Bootstrap's navbar if needed */
.navbar {
  padding: 0 !important;
}

.navbar-brand {
  display: none;
}

header.navbar nav {
  width: 100%;
  max-width: 1400px;
  padding: 0 2rem;
}

header.navbar nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

header.navbar nav ul button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

header.navbar nav ul button:hover {
  transform: translateY(-2px);
}

header.navbar nav ul button a {
  color: white;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.05);
}

header.navbar nav ul button:hover a,
header.navbar nav ul button a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===================================
   MAIN CONTENT AREA
   =================================== */
main {
  flex: 1;
  width: 100%;
  padding: 2rem 0;
}

.container-custom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: white;
  padding: 2.5rem;
  text-align: center;
  margin-top: auto;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 3px solid rgba(251, 141, 34, 0.3);
}

footer a {
  display: inline-block;
  margin: 0 1rem;
  transition: var(--transition);
}

footer a:hover {
  transform: scale(1.15) translateY(-3px);
}

footer img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: var(--transition);
}

footer a:hover img {
  filter: brightness(1.2);
}

/* ===================================
   INDEX PAGE
   =================================== */
.intro {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 3rem 2rem;
}

.intro-content {
  max-width: 700px;
  width: 100%;
}

.intro p {
  font-size: 2.2rem;
  margin: 0 0 0.75rem 0;
  font-weight: 300;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.intro h1 {
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.4;
  color: var(--secondary-color);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.intro a:hover {
  color: var(--light-text);
  border-bottom: 2px solid var(--light-text);
}

/* ===================================
   OVER MIJ PAGE
   =================================== */
.personalia {
  color: var(--secondary-color);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.4) 0%, rgba(11, 54, 55, 0.25) 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.personalia h3 {
  color: var(--light-text);
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.personalia h3:first-child {
  margin-top: 0;
}

.personalia p {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  line-height: 1.9;
  color: var(--secondary-color);
  font-weight: 300;
}

/* ===================================
   WERKPLEKLEREN PAGE
   =================================== */
.nogleeg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  width: 100%;
}

.nogleeg h1 {
  color: var(--light-text);
  font-size: 2.5rem;
}

/* ===================================
   CV PAGE
   =================================== */
.curriculum {
  color: var(--secondary-color);
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.3) 0%, rgba(11, 54, 55, 0.15) 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.curriculum h2 {
  color: var(--light-text);
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.curriculum h2:first-child {
  margin-top: 0;
  font-size: 2.5rem;
  text-align: center;
  border-bottom: none;
  margin-bottom: 2rem;
}

.curriculum p {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  padding-left: 1.5rem;
  line-height: 1.7;
  position: relative;
  font-weight: 300;
}

.curriculum p::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.download {
  text-align: center;
  padding: 3rem 0;
}

.download a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 1.25rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 6px 20px rgba(251, 141, 34, 0.4);
  letter-spacing: 0.5px;
}

.download a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 141, 34, 0.6);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

/* ===================================
   CONTACT PAGE - BOOTSTRAP ENHANCED
   =================================== */
.contact-section {
  padding: 3rem 0;
}

.contact-card {
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.9) 0%, rgba(11, 54, 55, 0.7) 100%);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
  border: 1px solid rgba(251, 141, 34, 0.2);
  transition: var(--transition);
}


.contact-card h3 {
  color: var(--light-text);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem 0;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  font-weight: 200;
}

.contact-card h3:first-child {
  margin-top: 0;
}

.contact-card h2 {
  color: var(--light-text);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Form Styles */
.contact-card form label {
  font-family: 'Lora', serif;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
}

.contact-card form input,
.contact-card form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(251, 141, 34, 0.3);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
}

.contact-card form input:focus,
.contact-card form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.3rem rgba(251, 141, 34, 0.25);
  background-color: white;
}

.contact-card form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-card form input[type="submit"] {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: white;
  border: none;
  cursor: pointer;
  padding: 1.125rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(251, 141, 34, 0.4);
}

.contact-card form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 141, 34, 0.6);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

/* ===================================
   PROJECTEN PAGE - BOOTSTRAP GRID
   =================================== */
.projects-section {
  padding: 3rem 0;
}

.project-card {
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.9) 0%, rgba(11, 54, 55, 0.7) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(251, 141, 34, 0.2);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(251, 141, 34, 0.5);
}

.project-card h2 {
  color: var(--light-text);
  font-size: 1.7rem;
  padding: 1.75rem;
  margin: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(4, 98, 99, 0.8) 0%, rgba(4, 98, 99, 0.5) 100%);
}

.project-card-img-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.project-card-img-wrapper a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.project-card p {
  font-size: 1.15rem;
  padding: 1.75rem;
  margin: 0;
  line-height: 1.6;
  color: var(--secondary-color);
  text-align: center;
  font-weight: 400;
  background: linear-gradient(135deg, rgba(4, 98, 99, 0.5) 0%, rgba(4, 98, 99, 0.3) 100%);
}

.project-card.coming-soon {
  justify-content: center;
  align-items: center;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.6) 0%, rgba(11, 54, 55, 0.4) 100%);
}

.project-card.coming-soon p {
  font-size: 1.8rem;
  color: var(--light-text);
  font-style: italic;
  font-weight: 300;
  background: none;
}

/* ===================================
   PROJECT INFO PAGES - BOOTSTRAP ENHANCED
   =================================== */
.project-info-section {
  padding: 3rem 0;
}

.project-info-header {
  margin-bottom: 4rem;
  text-align: center;
}

.project-info-header h1,
.project-info-header h2 {
  color: var(--light-text);
  border-bottom: 4px solid var(--secondary-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.project-info-header p {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.section-content {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, rgba(11, 54, 55, 0.2) 0%, rgba(11, 54, 55, 0.1) 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(251, 141, 34, 0.1);
}

.section-content h3 {
  color: var(--light-text);
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 1.5rem;
}

.section-content h4 {
  color: var(--light-text);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.section-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-weight: 300;
}

.section-content p strong {
  color: var(--light-text);
  font-weight: 600;
}

.section-content p small {
  font-size: 0.95rem;
  color: var(--light-text);
  font-style: italic;
}

.section-content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--secondary-color);
  transition: var(--transition);
  padding-bottom: 2px;
}

.section-content a:hover {
  color: var(--light-text);
  border-bottom-color: var(--light-text);
}

/* Image Gallery with Bootstrap */
.image-gallery {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(4, 98, 99, 0.3) 0%, rgba(4, 98, 99, 0.15) 100%);
  border-radius: 12px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  margin-bottom: 1rem;
  border: 2px solid rgba(251, 141, 34, 0.2);
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(251, 141, 34, 0.5);
}

.image-gallery .text-center {
  color: var(--light-text);
  font-weight: 500;
  margin-top: 0.75rem;
}

/* Wireframe specific - 3 columns on large screens */
.wireframe-gallery {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(4, 98, 99, 0.3) 0%, rgba(4, 98, 99, 0.15) 100%);
  border-radius: 12px;
}

.wireframe-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(251, 141, 34, 0.2);
}

.wireframe-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(251, 141, 34, 0.5);
}

.wireframe-gallery .text-center {
  color: var(--light-text);
  font-weight: 500;
  margin-top: 0.75rem;
}

.wireframe-gallery h4 {
  color: var(--light-text);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .intro h1 {
    font-size: 3rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .intro h1 {
    font-size: 2.5rem;
  }

  .intro p {
    font-size: 1.5rem;
  }

  header.navbar nav ul button a {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container-custom {
    padding: 0 1rem;
  }

  header.navbar {
    padding: 0.5rem 0;
  }

  header.navbar nav {
    padding: 0 1rem;
  }

  header.navbar nav ul {
    gap: 0.5rem;
    justify-content: center;
  }

  header.navbar nav ul button {
    margin: 0.25rem;
  }

  header.navbar nav ul button a {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }

  .intro {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .intro p {
    font-size: 1.5rem;
  }

  .intro h1 {
    font-size: 2.2rem;
    line-height: 1.5;
  }

  .personalia,
  .curriculum {
    padding: 2rem 1.5rem;
  }

  .personalia h3,
  .curriculum h2 {
    font-size: 1.6rem;
  }

  .section-content {
    padding: 1.5rem;
  }

  .project-info-header h1 {
    font-size: 1.9rem;
  }

  .section-content h3 {
    font-size: 1.5rem;
  }

  .project-card-img-wrapper {
    min-height: 250px;
  }

  footer img {
    width: 38px;
    height: 38px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  header.navbar nav ul button a {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }

  .intro {
    padding: 1.5rem 1rem;
  }

  .intro p {
    font-size: 1.3rem;
  }

  .intro h1 {
    font-size: 1.8rem;
  }

  .project-info-header h1 {
    font-size: 1.6rem;
  }

  .section-content {
    padding: 1.25rem;
  }

  .section-content h3 {
    font-size: 1.4rem;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .project-card h2 {
    font-size: 1.5rem;
    padding: 1.5rem;
  }
}