/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    background-color: #5b4b82;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 60px; /* or adjust to your preference */
    width: auto;
    margin-right: 10px;
}


.name {
    font-size: 1.2rem;
    font-weight: bold;
}

.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-right a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar-right a:hover {
    color: #d1c4e9;
}

/* Footer Styles */
footer {
    background-color: #5b4b82;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-top: auto;
    flex-wrap: wrap;
}

.footer-left {
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-icon:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Animation for open state */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-right {
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-right {
        justify-content: flex-start;
    }
    .navbar-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    @media (max-width: 768px) {
        .navbar {
            flex-direction: column;
            align-items: stretch;
        }
    
        .navbar-left {
            display: flex;
            align-items: center;
            /**justify-content: space-between;**/
            width: 100%;
        }
    
        .navbar-right {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #5b4b82;
            padding: 10px 0;
        }
    
        .navbar-right.active {
            display: flex;
        }
    
        .navbar-right a {
            padding: 10px 20px;
        }
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.hero-gif{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(0, 0, 0, 0.4); /* optional overlay */
  text-align: center;
}
.video-overlay h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Drop shadow */
}

.about-section {
  padding: 60px 20px;
  background-color: white;
  color: #231942;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img {
  width: 250px;
  border: 6px solid #7D6FAF;
  box-sizing: border-box;
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 2.5rem;
  color: #231942;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 1.5rem;
}

.linkedin-link {
  font-size: 1.1rem;
  color: #231942;
  text-decoration: underline;
  font-weight: bold;
  transition: 0.3s ease;
}


.linkedin-link:hover {
  opacity: 0.7;
}
.demo-reel-section {
  padding: 3rem 1rem;
  text-align: center;
}

.demo-title {
  font-size: 2.5rem;
  color: #231942;
  margin-bottom: 2rem;
}

.demo-reel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.demo-image {
  height: 530px; /* match YouTube iframe height */
  width: auto;
  object-fit: contain;
}

.demo-video {
  width: 700px;
  height: 394px;
  border-radius: 8px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

/* Hide image on screens smaller than 768px */
@media screen and (max-width: 768px) {
  .demo-image {
    display: none;
  }
}

.gallery-wall {
  padding: 50px 20px;
  text-align: center;
}

.gallery-wall h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1d1333;
}

/* Grid layout */
.grid-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  justify-content: center;
  align-items: start;
}

/* Each media item retains native size */
.media-item {
  width: 100%;
  overflow: hidden;
}

.media-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.media-item img:hover {
  transform: scale(1.03);
}

.resume-section {
  text-align: center;
  padding: 3rem 1rem;
}

.download-btn {
  background-color: #231942;
  color: white;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #3e2c6d;
}

.resume-img {
  
  height: auto;
  border: 10px solid #625290; /* border in navbar color */
  border-radius: 8px;
  margin-bottom: 2rem;
}

.designed-img,
.resume-img {
  max-width: 40%;
  height: auto;
  margin-bottom: 2rem;
}

.test{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE STYLING */
@media screen and (max-width: 820px) {
  .resume-img {
    max-width: 100%;
    border-width: 5px;
  }

  .designed-img {
    max-width: 100%;
  }

  .download-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align image and form to the middle */
    justify-content: center;
    gap: 2rem;
    padding: 4rem;
}

.contact-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #201547;
}

.contact-image {
    max-width: 80%;
    height: auto;
    border-radius: 50%;
}

.contact-right {
    flex: 1 1 400px;
    background-color: #5e4b8b;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures the form content is vertically centered inside */
    max-width: 50%;
}



.contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #201547;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #3a2c5a;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
    }
    .contact-left, .contact-right {
        width: 100%;
    }
}

/* Portfolio Banner */
.portfolio-banner {
    background: url('portfoliobackground_2.png') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-banner h1 {
    color: white;
    font-size: 5rem;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Folder Links */
.folder-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 2rem;
    flex-wrap: wrap;
}

.folder {
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.folder img {
    width: 200px; /* Bigger size */
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.folder span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* Hover Effect */
.folder:hover img {
    transform: scale(1.08);
   
}

.folder:hover span {
    color: #b19cd9; /* lighter purple on hover */
}

/* Folder styles */
.portfolio-folders {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}



/* Folder row */
.portfolio-folders {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}

.folder {
    text-align: center;
    cursor: pointer;
}



/* Highlight the first folder on this page */
.folder.active {
    margin-top: -20px; /* Push upward */
}

/* Gallery with 3 per row */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 15px;
    padding: 5rem;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Mobile friendly */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

.padding
{
  padding-left: 5%;
  font-size: 2.5rem;
}
.gallerysocialmedia
{
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Always 3 columns */
    padding: 5rem;
}
.gallerysocialmedia img {
    width: 90%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

a{
  text-decoration: none;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    padding: 2rem;
}

.project-card {
    background-color: #261944; /* dark purple */
    color: white;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Folder top bar */
.folder-top {
    position: relative;
    background-color: #261944;
    height: 40px;
}

.folder-tab {
    position: absolute;
    top: -12px;
    left: 0;
    width: 200px;
    height: 25px;
    background-color: #261944;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Project content split into text & image */
.project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
}

.project-text {
    flex: 1;
}

.project-title {
    color: #e0b1cb; /* purple-pink */
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.project-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.project-btn {
    display: inline-block;
    background-color: #5f4b8b; /* lighter purple */
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.project-btn:hover {
    background-color: #7a5fbf;
}

/* Image styling */
.project-image img {
    width: 150px;
    height: auto;
    border-radius: 4px;
}

.portfolio-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.portfolio-detail h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #261944; /* dark purple */
}

.portfolio-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-row.reverse {
    flex-direction: row-reverse;
}

.portfolio-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.portfolio-image {
    flex: 1;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.portfolio-video {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 20px;
}

.portfolio-video iframe {
    width: 100%;
    max-width: 800px;   /* Prevent it from getting too big */
    aspect-ratio: 16 / 9;
    border: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .portfolio-row,
    .portfolio-row.reverse {
        flex-direction: column;
    }

    .portfolio-video iframe {
        width: 100%;
        height: 300px;
    }
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
    color: #2a1b4a; /* Your dark purple text */
    font-weight: bold;
    font-size: 2rem;
    gap: 1rem;
    transition: transform 0.2s ease;
}

.back-link img {
    width: 50px;
    height: auto;
}

.back-link:hover {
    transform: translateY(-3px);
    color: #6c54a3; /* Hover purple */
}

/* Short form video section */
.short-form-section {
    text-align: center;
    margin-top: 2rem;
}

.short-form-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Video grid for TikTok/Reels size */
.video-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.video-grid iframe {
    width: 200px;   /* TikTok/Reels width */
    height: 355px;  /* TikTok/Reels height ratio */
    border: none;
    border-radius: 5px;
}

/* Video grid for TikTok/Reels size */
.video-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.video-grid iframe {
    width: 200px;   /* TikTok/Reels width */
    height: 355px;  /* TikTok/Reels height ratio */
    border: none;
    border-radius: 5px;
}

.graphic-design-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
    padding: 2rem;
    max-width: 1100px;
}

.graphic-design-text {
    flex: 1;
    max-width: 500px;
}

.graphic-design-text h1 {
    margin-bottom: 1rem;
}

.graphic-design-text p {
    line-height: 1.6;
}

.slideshow-container {
  position: relative;
  overflow: hidden;
  max-width: 420px;           /* adjust as you like */
  aspect-ratio: 9 / 16;       /* keeps a steady height; remove if not needed */
  border-radius: 8px;
}

.slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 600ms ease;   /* smooth slide */
}

.slide {
  flex: 0 0 100%;       /* one slide per view */
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fills nicely, no stretching */
  display: block;
}

/* optional nav buttons */
.slideshow-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,.45);
  color: #fff;
  padding: .35rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
}
.slideshow-container .prev { left: .4rem; }
.slideshow-container .next { right: .4rem; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slides-track { transition: none; }
}


.two-images {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically (if heights differ) */
  gap: 1.5rem;              /* space between images */
  margin-top: 2rem;
  flex-wrap: wrap;          /* allows stacking on small screens */
}

.two-images img {
  max-width: 100%;
  height: auto;
  width: 300px;  /* fixed width, adjust as needed */
  border-radius: 8px;
}

.portfolio-video img {
    width: 100%;
    max-width: 400px;   /* Prevent it from getting too big */
    gap: 20px;
    border: none;
}

.movement {
    line-height: 30px;
    font-size: 1.1rem;
}

.faith
{
    max-width: 80%;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    justify-content: center;

}

.big-image-section {
  text-align: center;
  margin: 3rem 0;
}

.big-image-section h1 {
  margin-bottom: 1.5rem;
  color: #231942; /* matches your theme */
}

.big-image-section img {
  max-width: 90%;   /* responsive */
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;   /* ensures it’s centered */
}
