*,
*::before, 
*::after {
    box-sizing: border-box; 
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1200;
}

.header img {
    height: 100px;
    width: auto;
    margin: 0;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1200;
    margin-right: 35px;
}

.hamburger-menu input {
    display: none;
}

.hamburger-menu input:checked ~ .sidebar {
    right: 0;
}

.hamburger-menu label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    z-index: 1200;
}

.hamburger-menu label span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #7ab2df;
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu label::before,
.hamburger-menu label::after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #7ab2df;
    border-radius: 2px;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu label::before {
    top: 0;
}

.hamburger-menu label::after {
    bottom: 0;
}

.hamburger-menu input:checked + label span {
    opacity: 0;
}

.hamburger-menu input:checked + label::before {
    transform: rotate(45deg) translate(5px, 14px);
}

.hamburger-menu input:checked + label::after {
    transform: rotate(-45deg) translate(0px, -10px);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #081e3d;
  color: #ffffff;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.hamburger-menu input:checked ~ .sidebar {
    right: 0;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
  width: 100%;
}

.sidebar nav .menu-item {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Nothing You Could Do', cursive;
  color: #ffffff;
}

.sidebar nav .menu-item:hover {
  background-color: #061935;
  color: #ffffff;
}

.sidebar nav .menu-item a {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.sidebar nav .menu-item a:hover {
  color: #a0d1eb;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar .close-btn:hover {
    color: #ddd;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 !important;
    margin: 0 !important;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-family: 'Ephesis', cursive;
    font-size: 25px;
    color: #2c5e79;
    line-height: 1.6;
    padding: 40px 20px 80px 20px; 
}

.main-content h1 {
    font-family: 'Fleur De Leah', cursive;
    font-size: 60px;
    color: #a0d1eb;
    margin-bottom: 50px;
    text-align: center;
}

.main-content-container {
  max-width: 1000px;
  width: 95%;
  margin: 50px auto 60px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(44, 94, 121, 0.4);
  text-align: left;
  display: block;
}

.main-content-container h1 {
  font-family: 'Fleur De Leah', cursive;
  font-size: 60px;
  color: #a0d1eb;
  margin-bottom: 20px;
  text-align: center;
}

.main-content-container p {
    font-family: 'Ephesis', cursive;
    font-size: 25px;
    color: #2c5e79;
    line-height: 1.6;
    text-align: center;
}

.main-content h1, .home-container h1 {
    font-family: 'Fleur De Leah', cursive;
    font-size: 60px;
    color: #a0d1eb;
    margin-bottom: 50px;
}

.main-content-container p, .home-container p {
    font-family: 'Ephesis', cursive;
    font-size: 25px;
    color: #2c5e79;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

form label {
    font-size: 25px;
    color: #a0d1eb;
    text-align: left;
    font-family: 'Fleur De Leah', cursive;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 25px;
    font-family: 'Ephesis', cursive; 
}

form button {
    padding: 12px;
    background-color: #132b68;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Fleur De Leah', cursive;
}

form button:hover {
    background-color: #091639;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-me-image {
  background-image: url('about-me.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 400%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  position: relative;
}

.under-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 60px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(44, 94, 121, 0.4);
    max-width: 1000px;
    width: 95%;
    text-align: center;
}

.under-content h1 {
    font-family: 'Fleur De Leah', cursive;
    font-size: 60px;
    color: #a0d1eb;
    margin-bottom: 20px;
}

.under-content-container {
    font-family: 'Ephesis', cursive;
    font-size: 25px;
    color: #2c5e79;
    line-height: 1.6;
}

.download-resume {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 50px auto;
    padding: 15px 30px;
    background-color: #081e3d;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-resume-container {
    width: 100%;
    text-align: center;
}

.download-resume:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.resume-link {
    font-family: 'Nothing You Could Do', cursive;
    font-size: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.footer {
    background-color: #7ab2df;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 20px;
    width: 100%;
    margin-top: auto;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: transform 0.3s ease;
}

.footer .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer .social-icon:hover {
    transform: scale(1.2);
}

.carousel-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto 2em auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: transparent;
  z-index: 2;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.slides, .slide {
  width: 100%;
  height: 100%;
  background: transparent;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #19232b;
  color: #fff;
  border: none;
  font-size: 2em;
  width: 44px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0.5;
  transition: background 0.2s, opacity 0.2s;
}
.carousel-arrow.left { left: 16px; }
.carousel-arrow.right { right: 16px; }
.carousel-arrow:hover {
  background: #000;
  opacity: 1;
}

.manual-btn-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  z-index: 2;
}
.manual-btn {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid #fff;
}
.manual-btn.active,
.manual-btn:hover {
  opacity: 1;
  background: #fff;
  border: 2px solid #7ab2df;
}

.about-snapshot {
    background-color: #deeaf6;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 0;
}

.about-snapshot-container {
  max-width: 700px;
  margin: 0 auto;
  color: #081e3d;
}

.about-snapshot h2 {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: 'Ephesis', cursive;
  font-family: 'Fleur De Leah', cursive;
  color: #7ab2df;
}

.about-snapshot p {
  font-family: 'Ephesis', cursive;
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2c5e79;
}

.about-button {
    font-size: 18px;
    color: #ffffff;
    background-color: #081e3d;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    font-family: 'Nothing You Could Do', cursive;
}

.about-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-button:hover {
  background-color: #061935;
}

.gallery-banner {
    background-image: url('art 6.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: inset 0 0 0 2000px rgba(49, 92, 185, 0.231);
    animation: fadeIn 1.5s ease-in-out;
}

.gallery-overlay {
    text-align: center;
    color: #fbe8b9;
    font-family: 'Nothing You Could Do', cursive;
}

.gallery-overlay h2 {
    font-size: 48px;
    
    letter-spacing: 2px;
}

.gallery-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff4e8;
}

.gallery-btn {
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    background-color: transparent;
}

.gallery-btn:hover {
    background-color: #2537681a;
    color: #000;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    visibility: hidden;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.projects-banner {
  background-image: url('art 6.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #a0d1eb;
  font-size: 3rem;
  position: relative;
}

.projects-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  width: 100%;
}

.projects-banner p {
  font-family: 'Fleur De Leah', cursive;
  font-size: 4rem;
  color: #fff;
  margin: 0;
  text-align: center;
}

.projects-banner h2 {
  font-family: 'Fleur De Leah', cursive;
  font-size: 5rem;
  color: #fff;
  margin: 0;
  text-align: center;
}

.project-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 1.5em 0;
}

.project-card {
  position: relative;
  width: 400px;
  height: 320px;
  max-width: 95vw;
  background: #19232b;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card h2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  font-size: 1.7em;
  color: #ffe066;
  text-align: center;
  font-family: 'Nothing You Could Do', cursive;
  background: rgba(25, 35, 43, 0.55);
  text-shadow: 1px 1px 4px #19232b88;
  pointer-events: none;
  width: 100%;
  line-height: 1.2;
  padding: 0.7em 0.2em;
  border-radius: 0;
  transition: background 0.3s;
  z-index: 2;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.project-card:hover h2 {
  background: rgba(25, 35, 43, 0.85);
}

.shop-banner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 520px;
  background: linear-gradient(135deg, #052d55 0%, #3b82c4 50%, #72d5f3 100%);
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  width: 100vw;
  padding: 0;
  margin-bottom: 3em;
}

.shop-overlay {
  text-align: right;
  width: 100%;
  padding: 2.5em 1.5em;
}

.shop-overlay h2 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  color: #fbe8b9;
  background-color: transparent;
}

.shop-overlay p,
.shop-overlay strong,
.shop-overlay em {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.shop-btn {
  padding: 0.5em 1.5em;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5em;
}

.shop-btn:hover {
  background: #fff;
  color: #0f172a;
}

.outline-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.outline-btn:hover {
  background: #fff;
  color: #0f172a;
}

.shop-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 900px;
  max-width: 100vw;
  gap: 6em;
  margin-right: 24vw;
}

.shop-chibi-img {
  max-height: 350px;
  width: auto;
  display: block;
}

.shop-overlay.shop-overlay-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 350px;
  text-align: center;
  padding: 0;
}

.shop-btn-group {
  display: flex;
  justify-content: center;
  gap: 1em;
  width: 100%;
}

.project-cards-container:last-of-type {
  margin-bottom: 5em;
}
