.header-image {
  position: relative;
}
.header-image img {
  display: block;
  width: 100%;
  height: auto;
}
.header-image .header-overlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header-image .header-overlay .site-title {
  margin: 0 0 0 0;
  font-size: 2rem;
  font-weight: bold;
}
.header-image .header-overlay .site-title a {
  color: #fff;
  text-decoration: none;
}
.header-image .header-overlay .site-description {
  margin: 0;
  font-size: 1.2rem;
}

.header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.main-navigation {
  margin: 40px 0 0 0;
  text-align: center;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}
.main-navigation li {
  position: relative;
  display: inline-block;
}
.main-navigation a {
  display: block;
  padding: 10px 0;
  color: #222;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: #000;
  border-bottom: 2px solid #222;
}

.site-footer {
  background-color: #2c2c2c;
  color: #e0e0e0;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}
.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #4a9bd1;
}
.footer-column p {
  margin-bottom: 20px;
  color: #c0c0c0;
}

.footer-links,
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.social-links li {
  margin-bottom: 12px;
}
.footer-links a,
.social-links a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.social-links a:hover {
  color: #4a9bd1;
}
.footer-links a i,
.social-links a i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-column {
    margin-bottom: 30px;
  }
}
.projects-filter {
  margin: 40px 0;
  text-align: center;
}
.projects-filter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.projects-filter .technology-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.projects-filter .filter-button {
  background-color: #2d2d2d;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.projects-filter .filter-button:hover {
  background-color: #444;
}
.projects-filter .filter-button.active {
  background-color: #333;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.projects-section {
  padding: 40px 0;
}
.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.projects-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.projects-section .section-description {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.projects-section .project-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.projects-section .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.projects-section .project-thumbnail {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.projects-section .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.projects-section .project-thumbnail .no-thumbnail {
  height: 100%;
  background-color: #f5f5f5;
}
.projects-section .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
}
.projects-section .project-link:hover .project-thumbnail img {
  transform: scale(1.05);
}
.projects-section .project-link:hover .project-overlay {
  opacity: 1;
}
.projects-section .project-title {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  color: white;
}
.projects-section .project-excerpt {
  font-size: 0.9rem;
  line-height: 1.4;
  max-height: 150px;
  overflow: auto;
}
.projects-section .project-excerpt::-webkit-scrollbar {
  width: 4px;
}
.projects-section .project-excerpt::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.projects-section .project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.main-navigation {
  position: relative;
  margin: 40px 0 0 0;
  text-align: center;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}
.main-navigation li {
  position: relative;
  display: inline-block;
}
.main-navigation a {
  display: block;
  padding: 10px 0;
  color: #222;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: #000;
  border-bottom: 2px solid #222;
}
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background-color: #fff;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 10px 0;
  border-radius: 6px;
  overflow: hidden;
  transform-origin: top center;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
}
.main-navigation .sub-menu li {
  width: 100%;
  display: block;
  border-left: 3px solid transparent;
  transition: background-color 0.2s, border-left-color 0.2s;
}
.main-navigation .sub-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-left-color: #333;
}
.main-navigation .sub-menu a {
  padding: 10px 15px;
  display: block;
  border-bottom: none !important;
  color: #333;
  font-weight: normal;
  transition: transform 0.2s;
}
.main-navigation .sub-menu a:hover {
  transform: translateX(5px);
  color: #000;
}
.main-navigation .sub-menu li + li {
  position: relative;
}
.main-navigation .sub-menu li + li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.main-navigation li:hover > .sub-menu {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.main-navigation .sub-menu .current-menu-item > a,
.main-navigation .sub-menu .current_page_item > a {
  font-weight: bold;
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 3px solid #333;
}

@media screen and (max-width: 767px) {
  .main-navigation .sub-menu {
    position: absolute;
    display: none;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transform: translateY(10px) scale(0.95);
    opacity: 0;
  }
  .main-navigation .sub-menu li {
    border-left: 3px solid transparent;
  }
  .main-navigation .sub-menu a {
    padding: 10px 15px;
  }
  .main-navigation li:hover > .sub-menu {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.menu-toggle {
  display: none !important;
}

.site-banner {
  position: relative !important;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
}
.site-banner .banner-image {
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}
.site-banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-banner .header-overlay {
  position: absolute !important;
  left: 30px;
  bottom: 30px;
  color: #fff;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.site-banner .header-overlay .site-title {
  margin: 0 0 0 0;
  font-size: 2rem;
  font-weight: bold;
}
.site-banner .header-overlay .site-description {
  margin: 0;
  font-size: 1.2rem;
}

.home .site-banner {
  height: 600px;
  max-height: 600px;
}
.home .site-banner .banner-image {
  height: 600px;
  max-height: 600px;
}
.home .site-banner .banner-image img {
  height: 600px;
}

.site-banner.project-page {
  height: 400px;
  max-height: 400px;
}
.site-banner.project-page .banner-image {
  height: 400px;
  max-height: 400px;
}

.header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.projects-filter {
  margin: 40px 0;
  text-align: center;
}
.projects-filter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.projects-filter .technology-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.projects-filter .filter-button {
  background-color: #2d2d2d;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.projects-filter .filter-button:hover {
  background-color: #444;
}
.projects-filter .filter-button.active {
  background-color: #333;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.projects-section {
  padding: 40px 0;
}
.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.projects-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.projects-section .section-description {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.projects-section .project-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.projects-section .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.projects-section .project-thumbnail {
  height: 200px;
  overflow: hidden;
}
.projects-section .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-section .project-thumbnail .no-thumbnail {
  height: 100%;
  background-color: #f5f5f5;
}
.projects-section .project-title {
  padding: 15px;
  margin: 0;
  font-size: 1.2rem;
}
.projects-section .project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.single-projects .entry-header {
  text-align: center;
  margin-bottom: 40px;
}
.single-projects .entry-header .entry-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.single-projects .entry-content {
  max-width: 900px !important;
  margin: 0 auto 6rem auto;
  padding: 0 15px !important;
}
.single-projects .entry-content .wp-block-image {
  margin: 30px 0;
}
.single-projects .entry-content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-projects .entry-content .wp-block-image figcaption {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #666;
}
.single-projects .entry-content img.alignwide,
.single-projects .entry-content img.alignfull {
  width: 100%;
  height: auto;
}
.single-projects .entry-content .project-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.single-projects .post-navigation {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
.single-projects .post-navigation .nav-previous,
.single-projects .post-navigation .nav-next {
  max-width: 45%;
}

.single-my-resume .entry-header {
  text-align: center;
  margin-bottom: 40px;
}
.single-my-resume .entry-header .entry-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.single-my-resume .entry-content {
  max-width: 900px !important;
  margin: 0 auto 6rem auto;
  padding: 0 15px !important;
}
.single-my-resume .entry-content ul {
  max-width: 600px;
}
.single-my-resume .entry-content section {
  margin-bottom: 40px;
}
.single-my-resume .entry-content h2 {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.single-my-resume .entry-content .resume-item {
  margin-bottom: 25px;
}
.single-my-resume .entry-content .resume-item h3 {
  margin-bottom: 5px;
}
.single-my-resume .entry-content .resume-item .date {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}
.single-my-resume .entry-content .skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-my-resume .entry-content .skills .skill {
  background-color: #f5f5f5;
  padding: 5px 15px;
  border-radius: 20px;
}
.single-my-resume .entry-content img {
  max-width: 100%;
  height: auto;
}

.page-template-page-photography .entry-header {
  text-align: center;
  margin-bottom: 40px;
}
.page-template-page-photography .entry-header .entry-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.page-template-page-photography .entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.page-template-page-photography .entry-content img {
  max-width: 100%;
  height: auto;
}

/* Photography Page Styles */
.page-title,
.entry-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* Photography container styling */
.photo-carousel-pro {
  width: 70vw !important;
  max-width: 70vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0;
  height: auto !important;
  position: relative;
  /* Remove these conflicting positioning properties */
  left: auto !important;
  transform: none !important;
}

/* Remove duplicate container that might be causing issues */
.photo-carousel-container {
  width: 100%;
  margin: 0;
}

/* Fix slide positioning */
.photo-carousel-slide {
  position: absolute !important; /* Keep absolute positioning */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0; /* Hide all slides by default */
  transition: opacity 1.5s ease-in-out !important; /* Increase from 0.6s to 1.5s */
}

/* Show only active slide */
.photo-carousel-slide.active {
  position: relative !important; /* Only the active slide is in normal flow */
  opacity: 1;
  z-index: 1;
}

/* Image styling */
.photo-carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Improve navigation buttons positioning and styling */
.photo-carousel-prev,
.photo-carousel-next {
  z-index: 10;
  width: 50px !important; /* Larger circle */
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 32px !important; /* Bigger carets */
  font-weight: bold !important; /* Bold carets */
  line-height: 1 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: rgba(150, 150, 150, 0.7) !important; /* Gray background */
}

/* Adjust controls position */
.photo-carousel-prev {
  left: 50px;
}

.photo-carousel-next {
  right: 50px;
}

/* Fix the vertical alignment of the carets */
.photo-carousel-prev:before,
.photo-carousel-next:before {
  position: relative;
  top: -2px; /* Fine-tune vertical alignment if needed */
}

/* Fix parent container that might be constraining width */
.entry-content {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* Make sure the main content container doesn't restrict width */
.site-main {
  overflow: visible !important;
}

/* Ensure the main content area doesn't limit width */
.content-area {
  max-width: none !important;
  padding: 0 !important;
}

/*# sourceMappingURL=style.css.map */
