:root {
  --brand-bg: #f8faff;        /* very light bluish background */
  --brand-header: #191970;    /* Midnight Blue header */
  --brand-accent: #0a3d62;    /* Deep navy accent */
  --brand-hover: #1e90ff;     /* Dodger Blue hover glow */
  --text-main: #1a1a1a;
  --text-secondary: #333333;
}

/* Header Styles */
.nav {
  position: sticky;
  top: 0;
  background: var(--brand-bg);
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.nav__logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-header);
}

.nav__tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-accent);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  gap: 20px;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__links a:hover {
  background-color: var(--brand-hover);
  color: #fff;
}

.nav__links a.is-active {
  background-color: var(--brand-header);
  color: #fff;
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    background: var(--brand-bg);
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 12px;
  }

  .nav__links.nav__links--open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }
}

/* === Background Sparkle Effect for Page === */
body {
  background: linear-gradient(135deg, #f8faff, #1e90ff); /* light to Dodger Blue */
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(25,25,112,0.15) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  animation: sparkleMove 20s linear infinite;
}

* {
  box-sizing: border-box;
}

@keyframes sparkleMove {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}



/* === Section Layout === */
main .section {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

main .section--light,
main .section--peach {
  background: transparent; /* let body gradient show */
}

/* === Container === */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

/* === Card Styling === */
.card {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee); /* soft neutral gradient */
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);

  /* Animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for multiple cards */
.section:nth-child(1) .card { animation-delay: 0.2s; }
.section:nth-child(2) .card { animation-delay: 0.4s; }
.section:nth-child(3) .card { animation-delay: 0.6s; }
.section:nth-child(4) .card { animation-delay: 0.8s; }
.section:nth-child(5) .card { animation-delay: 1s; }
.section:nth-child(6) .card { animation-delay: 1.2s; }

/* Hover effect */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === Headings === */
.card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand-header);
}

/* === Text and Lists === */
.card p,
.card ul {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: justify;
  font-weight: 500;
  font-weight: 900;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.card ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  text-align: justify;
  font-weight: 900;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-header);
  font-weight: bold;
}

/* === Buttons === */
.card .btn {
  margin-top: 16px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--brand-accent);
  color: #fff;
}

.btn--secondary {
  background: var(--brand-header);
  color: #fff;
}

.card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30,144,255,0.3); /* Dodger Blue glow */
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .card {
    padding: 24px;
    margin: 30px auto;
    max-width: 100%;
    overflow: hidden;
  }

  .main-container {
    padding: 0 16px;
  }

  .card h2 {
    font-size: 1.5rem;
  }

  .card p,
  .card ul {
    font-size: 0.95rem;
    text-align: justify;
  }
}

/* === Footer === */
.site-footer {
  background: linear-gradient(to right, #fdfbfb, #ebedee); /* soft neutral gradient */
  padding: 48px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #444;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Navigation links layout */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  justify-items: center;
}

/* Desktop override: force 3 links per row */
@media (min-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Links */
.footer-nav a {
  text-decoration: none;
  color: var(--brand-header);   /* Midnight Blue */
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand-hover);    /* Dodger Blue hover glow */
}

/* Credit section */
.footer-credit p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #666;
  font-weight: 900;
}


/* Welcome Card */
.card--intro {
  background: linear-gradient(
    135deg,
    #191970 0%,     /* Midnight Blue */
    #0a3d62 40%,    /* Deep Navy */
    #1e90ff 70%,    /* Dodger Blue glow */
    #ffd580 100%    /* Golden warmth */
  );
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto 56px auto;
  color: #fff;
  text-align: center;          /* ensures text and inline elements center */
  display: flex;               /* flexbox for vertical alignment */
  flex-direction: column;
  align-items: center;         /* centers image horizontally */
  justify-content: center;     /* centers content vertically */
  position: relative;

  /* Unique animation */
  opacity: 1;
  transform: scale(0.9) rotate(-3deg);
  animation: introPop 1.2s ease forwards;
  animation-fill-mode: forwards;
}

/* Profile Image */
.intro-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 5px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: block;              /* ensures it behaves like a block element */
}

/* Quote */
.intro-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Wrapper to position the button */
.next-button-wrapper {
  position: relative;
  height: 0;
}
.next-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px 80px 0; /* right + bottom spacing */
}



/* Next Button */
.btn--next {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--brand-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn--next:hover {
  background: var(--brand-hover);
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  .btn--next {
    position: static;         /* removes absolute/fixed positioning */
    display: block;
    margin: 32px auto 0 auto; /* centers the button with spacing */
    text-align: center;
  }

  .next-button-wrapper {
    height: auto;
    text-align: center;
  }
}





.timeline {
  background: linear-gradient(135deg, #cce6ff, #99ccff); /* soft blue gradient */
  color: #003366;
  text-align: left;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.timeline h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #002244;
}

.timeline-list {
  list-style: none;
  padding-left: 0;
}

.timeline-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.timeline-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0055aa;
  font-size: 1.2rem;
  line-height: 1;
}

.timeline-container {
  background: linear-gradient(135deg, #cce6ff, #99ccff);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #003366;
}

.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #002244;
}

.timeline-entry {
  background: #fff;
  border-left: 6px solid #0055aa;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.timeline-year {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0055aa;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 1rem;
  color: #333;
}


.timeline-container {
  background: linear-gradient(135deg, #cce6ff, #99ccff);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #003366;
}

.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #002244;
}

.timeline-entry {
  background: #fff;
  border-left: 6px solid #0055aa;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.timeline-year {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0055aa;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 1rem;
  color: #333;
}

.project-insights {
  background: linear-gradient(135deg, #e6f2ff, #d9ebff);
  color: #003366;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.project-insights h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #002244;
}

.insights-list {
  list-style: none;
  padding-left: 0;
}

.insights-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.insights-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0055aa;
  font-weight: bold;
}

.project-vision {
  background: linear-gradient(135deg, #e6f7ff, #d0ebff);
  color: #003366;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.project-vision h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #002244;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.vision-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.vision-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0055aa;
}

.vision-item p {
  font-size: 0.95rem;
  color: #333;
}

.event-highlights-hybrid {
  background: linear-gradient(135deg, #e6f7ff, #d0ebff);
  color: #003366;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.event-highlights-hybrid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #002244;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.highlight-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

.highlight-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0055aa;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #333;
}

/* Dark accent cards */
.highlight-item.dark-accent {
  background: #13294b;
  color: #cce6ff;
}

.highlight-item.dark-accent h3 {
  color: #66ccff;
}

.highlight-item.dark-accent p {
  color: #e0f0ff;
}

/* Outreach Highlights Hybrid Theme */
.outreach-highlights {
  background: linear-gradient(135deg, #e6f7ff, #d0ebff);
  color: #003366;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.outreach-highlights h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #002244;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.highlight-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.highlight-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0055aa;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #333;
}

/* Dark accent cards */
.highlight-item.dark-accent {
  background: #13294b;
  color: #cce6ff;
}

.highlight-item.dark-accent h3 {
  color: #66ccff;
}

.highlight-item.dark-accent p {
  color: #e0f0ff;
}




/* Animation */
@keyframes slide {
  0% { transform: translateX(0%); }
  15% { transform: translateX(0%); }
  20% { transform: translateX(-100%); }
  35% { transform: translateX(-100%); }
  40% { transform: translateX(-200%); }
  55% { transform: translateX(-200%); }
  60% { transform: translateX(-300%); }
  75% { transform: translateX(-300%); }
  80% { transform: translateX(-400%); }
  95% { transform: translateX(-400%); }
  100% { transform: translateX(0%); }
}







.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 12px;
}

.gallery-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  margin-bottom: 30px;
}

.artworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.artwork-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.artwork-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.artwork-card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.artwork-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
}

.btn--buy {
  display: inline-block;
  background: #0055aa;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn--buy:hover {
  background: #003f7f;
}

/* Header container */
.gallery-header-container {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 12px;
}

.gallery-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Artworks Grid */
.artworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}



/* ===== Artworks Header Container ===== */
.gallery-header-container {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 12px;
}

.gallery-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0; /* keeps spacing clean */
}

/* ===== Artworks Grid ===== */
.artworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .artworks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .artworks-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Artwork Card ===== */
.artwork-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.artwork-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.artwork-card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.artwork-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  text-align: justify;
}

/* ===== Buy Button ===== */
.btn--buy {
  display: inline-block;
  background: #0055aa;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn--buy:hover {
  background: #003f7f;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
  .artwork-card img {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .artwork-card img {
    width: 100%;
    height: auto;
  }
  .artworks-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}
@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.6rem;
  }
  .artwork-card img {
    height: 160px;
  }
}



.gallery-header-container {
  background: linear-gradient(135deg, #191970 0%, #0a3d62 40%, #1e90ff 70%, #f4d160 100%);
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  margin-bottom: 40px;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-intro {
  font-size: 1.1rem;
  color: #fefefe;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ===== Contact Header ===== */
.contact-header-container {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #003366;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0055aa;
  outline: none;
  box-shadow: 0 0 6px rgba(0,85,170,0.3);
}

/* ===== Submit Button ===== */
.btn--submit {
  background: #0055aa;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.btn--submit:hover {
  background: #003f7f;
}

/* ===== Confirmation Banner (optional) ===== */
.confirmation-banner {
  max-width: 600px;
  margin: 20px auto;
  padding: 12px 16px;
  background: #e6f9e6;
  border: 1px solid #00a000;
  border-radius: 8px;
  color: #006600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  display: none; /* hidden by default */
}

/* ===== Contact Header Container ===== */
.contact-header-container {
  background: linear-gradient(135deg, #191970 0%, #0a3d62 40%, #1e90ff 70%, #f4d160 100%);
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  margin-bottom: 40px;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-intro {
  font-size: 1.1rem;
  color: #fefefe;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ===== Contact Form Container ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group input[type="tel"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form {
  max-width: 800px;         /* Match header width */
  margin: 0 auto 56px auto; /* Same vertical spacing */
  background: #ffffff;
  padding: 24px 40px;       /* Match horizontal padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-container {
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 24px 40px;
  background: #f4f4f4;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.contact-info-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 16px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}
.contact-info-container {
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 28px 40px;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 50%, #ffd580 100%);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}


.about-card {
  max-width: 800px;
  margin: 40px auto;
  padding: 28px 40px;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 50%, #ffd580 100%);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-card p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.cv-button {
  display: inline-block;
  padding: 10px 20px;
  background: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cv-button:hover {
  background: #005bb5;
  transform: translateY(-2px);
}





/* Header inside the carousel card */
.gallery-header-container {
  background: linear-gradient(135deg, #191970 0%, #0a3d62 40%, #1e90ff 70%, #f4d160 100%);
  padding: 32px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}
.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.gallery-intro {
  font-size: 1rem;
  color: #fefefe;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}






.media-item iframe {
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  margin-top: 16px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.video-grid .card {
  padding: 24px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-grid iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.video-grid .card {
  padding: 30px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-grid iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 16px;
}

.video-grid .btn {
  margin-top: 16px;
  align-self: start;
}


.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn--view {
  background-color: #0055aa;
  color: #fff;
}

.btn--view:hover {
  background-color: #003f7f;
  transform: translateY(-2px);
}

.btn--library {
  background-color: #008060;
  color: #fff;
}

.btn--library:hover {
  background-color: #00664d;
  transform: translateY(-2px);
}


.artwork-card .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #b22222; /* deep red accent */
  margin: 8px 0;
  text-align: center;
}

.artwork-card {
  text-align: center;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.3s ease;
}

.artwork-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.artist-info-container {
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 28px 40px;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 50%, #ffd580 100%);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.artist-info-container h2,
.artist-info-container h3 {
  margin-bottom: 12px;
}

.artist-info-container p {
  margin: 8px 0 16px;
}

.artist-info-container .btn--explore,
.artist-info-container .btn--wish {
  display: inline-block;
  margin: 10px 8px 0 0;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease;
}

.artist-info-container .btn--explore {
  background-color: #0055aa; /* blue accent */
}

.artist-info-container .btn--wish {
  background-color:#2e8b57; /* green accent */
}

.artist-info-container .btn--explore:hover,
.artist-info-container .btn--wish:hover {
  background-color: #444;
}






/* Carousel Base */
.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Track Container */
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* Slides */
.carousel-slide {
  flex: 0 0 100%; /* each slide takes full width of container */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0.5rem;
}

/* Images */
.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh; /* keeps images visible without overflow */
  object-fit: contain; /* ensures full image is visible */
  border-radius: 8px;
  display: block;
}

/* Captions (certifications.html) */
.slide-caption,
.carousel-slide figcaption {
  font-size: 0.9rem;
  color: #333;
  margin: 0.5rem 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.6);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide img {
    max-height: 60vh;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem;
  }
}


/* Card container */
.carousel-card {
  background: #fff; /* or use your section color */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  margin: 1.5rem auto;
  max-width: 900px; /* keeps carousel centered */
}

/* Header styling */
.gallery-header-container {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: 1.6rem;
  margin: 0;
}

.gallery-intro {
  font-size: 1rem;
  color: #f6f6f6;
  margin-top: 0.3rem;
}

/* Carousel base */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track container */
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* Slides */
.carousel-slide {
  flex: 0 0 100%; /* each slide takes full width */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Images */
.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh; /* keeps images visible without overflow */
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.6);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-card {
    padding: 0.8rem;
  }
  .carousel-slide img {
    max-height: 50vh;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem;
  }
}


.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

.slide-caption {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 500;
}


/* Card container */
.carousel-card, .card {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0.8rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}

/* Carousel base */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track container */
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Slides */
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem;
}

/* Images */
.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 55vh; /* reduced height */
  object-fit: contain;
  border-radius: 6px;
}

/* Captions */
.slide-caption {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 0.6rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  border: none;
  background: #ccc;
}

.carousel-dots button.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-card, .card {
    max-width: 95%;
    padding: 0.6rem;
  }

  .carousel-slide img {
    max-height: 45vh;
  }

  .carousel-btn {
    font-size: 1.5rem;
  }
}


/* Welcome Section */
.section--intro {
  padding: 2rem 0;
}

/* Intro Card with gradient background */
.card--intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, #191970 0%, #0a3d62 40%, #1e90ff 70%, #f4d160 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Profile Image */
.intro-img {
  width: 180px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: 3px solid #fff;
}

/* Quote Styling */
.intro-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .card--intro {
    padding: 1.5rem 1rem;
  }

  .intro-img {
    width: 140px;
  }

  .intro-quote {
    font-size: 1.1rem;
  }
}
