html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
}

.italics {
  font-style: italic;
}

.profileLogo img {
  width: 400px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 5px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border: 1px solid #4b99ff;
  border-radius: 3px;
}

nav ul li a:hover {
  background-color: #4b99ff;
  color: #fff;
}

/* Container Stuff */
.container {
  margin-bottom: 60px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px;
  margin-top: 40px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.profilePicture {
  margin: 20;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}

.profilePicture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dukeBurgerHeader {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.profileDetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.profileDetails p {
  margin: 0;
}

.profileDescription {
  text-indent: 20px;
}

.button {
  margin: 10px;
  background-color: #4b99ff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.button:hover {
  background-color: #006cfa;
}


.letsConnect h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.buttonsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Reel Portion */
.reel-link {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #007bff;
  padding: 10px;
  border-radius: 4px;
}

.reel-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.file-link {
  display: inline-block;
  text-decoration: none;
}


/* Portfolio Section */
.portfolio-section {
  background-color: #f2f2f2;
  padding: 40px 0;
  text-align: center;
}
.portfolio-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  justify-items: center;
}

.video-item {
  position: relative;
  padding-bottom: 10%; /* 16:9 aspect ratio */
  overflow: hidden;
}


.video-item iframe {
  width: 360px;
  height: 200px;
}

.video-placeholder {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px auto;
}

.footerDisclaimer {
  font-size: 14px;
  margin-bottom: 10px;
}

.footerNote {
  font-size: 16px;
}

.emailButton {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.emailButton:hover {
  background-color: #0056b3;
}


@media (min-width: 920px) {
  .header {
    margin: 0 200px;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .column {
    padding: 0 60px;
  }

  .column + .column {
    border-left: 1px dashed #000;
  }

  /* Portfolio */
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(720px, 1fr));
  }
  
  .video-item iframe {
    width: 720px;
    height: 400px;
  }
}