html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: #fff;
  margin: 0;
}

:root {
  --dark: #1a1a1a;
  --light-text: #666;
  --lavender: #f4e8ff;
  --blue: #e3f6ff;
}

section {
  padding: 80px 0;
}

p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--light-text);
}

h2 {
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 5.5rem;
  text-align: left !important;
}

h3 {
  text-align: center !important;
}

.navbar {
  background: #fff !important;
  padding: 10px 0;
}

.nav-link {
  margin-left: 15px;
  color: #333 !important;
}

.nav-link:hover {
  color: var(--dark) !important;
}

.navbar-nav {
  margin-left: auto;
}

.logo {
  height: 70px;
  width: auto;
}

#intro {
  text-align: center;
  padding: 140px 60px 0 60px;
}

#intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 12rem;
  font-weight: 700;
  font-style: italic;
}

#intro h2 {
  text-align: right !important;
}

#intro p {
  text-align: right;
  color: var(--light-text);
}

.btn-dark {
  background: var(--dark);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
}

.btn-dark:hover {
  opacity: 0.9;
}

.mt-3 {
  color: #9e2a2b;
}

#designCarousel .carousel-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(0);
}

#about p {
  max-width: 650px;
  margin: 0 auto;
}

#skills {
  background: var(--lavender);
}

.skill-item {
  text-align: center;
  margin-bottom: 20px;
}

#skills img {
  height: 45px !important;
  width: auto !important;
  object-fit: contain !important;
}


#contact {
  background: var(--blue);
}

.contact-card-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.contact-card-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .contact-card-row {
    flex-direction: column;
  }
}

.other-project-buttons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.other-project-buttons .project-btn {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 18px 20px;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 8px;
  background: #9e2a2b;
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
}

.other-project-buttons .project-btn:hover {
  background: #7d1f22;
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 20px 0;
  color: var(--light-text);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  animation: zoomIn .3s ease;
}

.lightbox-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.lightbox-images img {
  width: 45%;
  max-width: 300px;
  border-radius: 10px;
}

.carousel-lightbox-trigger {
  cursor: pointer;
}

.other-project-buttons .project-btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex: 1 1 250px !important;
}