:root {
  --primary-gradient-start: #e9fbe8;
  --primary-gradient-end: #dcf6e5;
  --primary-gradient: linear-gradient(135deg,
      var(--primary-gradient-start) 0%,
      var(--primary-gradient-end) 100%);

  --dynamic-gradient: linear-gradient(135deg, #20c997 0%, #8dc63f 100%);

  --text-heading: #000000;
  --text-on-dark: #ffffff;
  --background-main: #f7fcf7;
  --card-background: #ffffff;
  --text-secondary: #2c2c2c;
  --text-muted: #6c6c6c;
  --accent-lime: #8dc63f;
  --accent-yellow: #ffd700;
  --accent-teal: #20c997;
  --accent-pink: #e64980;
  --divider-borders: #e0e0e0;

  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  --hover-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background-main);
  min-height: 100vh;
  color: var(--text-secondary);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider-borders);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--card-shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: #222;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #223;
  padding: 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(32, 201, 151, 0.1);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--card-background);
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--accent-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}

/* Sliding Navigation */
.side-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transition: left 0.3s ease;
  z-index: 1001;
  padding: 2rem 0;
  box-shadow: var(--card-shadow);
}

.side-nav.open {
  left: 0;
}

.side-nav-header {
  padding: 0 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-nav {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-teal);
}

.nav-links {
  list-style: none;
}

.nav-links li {
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-links a:hover {
  background: rgba(32, 201, 151, 0.1);
  border-left-color: var(--accent-teal);
}

.nav-links a.active {
  background: rgba(32, 201, 151, 0.15);
  border-left-color: var(--accent-teal);
  color: var(--accent-teal);
  font-weight: 600;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 201, 151, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Content */
.main-content {
  margin-top: 100px;
  padding: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* Specific to Designer Fonts / Upload Pages */

form {
  display: flex;
  flex-wrap: wrap;
  /* responsive */
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: row;
  width: 100%;
}

input[type="file"] {
  padding: 10px;
  border: 1px solid var(--divider-borders);
  border-radius: var(--border-radius);
  background: var(--card-background);
  flex: 1;
  width: auto;
  min-width: 200px;
}

input[type="text"] {
  padding: 10px;
  border: 1px solid var(--divider-borders);
  border-radius: var(--border-radius);
  background: var(--card-background);
  width: 100%;
  margin-bottom: 10px;
}

button {
  background: var(--dynamic-gradient);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.9;
  box-shadow: var(--hover-shadow);
}

.message {
  background-color: #d1fae5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #10b981;
  margin-bottom: 20px;
}

/* Font Cards */
.font-card {
  background: var(--card-background);
  border: 1px solid var(--divider-borders);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.font-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.font-card strong {
  font-size: 18px;
  color: var(--text-heading);
}

.font-card a {
  text-decoration: none;
  font-size: 14px;
  margin-left: 10px;
  color: var(--accent-teal);
  font-weight: 600;
}

.font-card a:hover {
  text-decoration: underline;
}

.preview {
  margin-top: 10px;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 12px;
  font-size: 25px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--divider-borders);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--divider-borders);
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span {
  background: var(--dynamic-gradient);
  color: white;
  border-color: transparent;
  font-weight: bold;
}

h2 {
  padding: 20px;
  background: transparent;
  color: var(--text-heading);
  border-bottom: 1px solid var(--divider-borders);
  margin-bottom: 20px;
}

p {
  padding: 10px;
  background: transparent;
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 20px auto;
  margin-top: 121px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 10px;
  }

  input[type="file"] {
    width: 100%;
  }

  form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-download {
    min-width: auto;
  }
}

/* Footer */
.site-footer {
  background-color: #fff;
  color: var(--text-heading);
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-content h3,
.footer-content h4 {
  color: var(--text-secondary);
}

.footer-left p {
  max-width: 300px;
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* --- UPDATED HEADER/NAV/FOOTER STYLES --- */
/* Header */
.header {
  background: var(--primary-gradient);
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid var(--divider-borders); */
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* box-shadow: var(--card-shadow); */
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--card-shadow);
  background: rgba(255, 255, 255, 0.85);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: #02541a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo a {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #02541a;
  text-decoration: none;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #223;
  padding: 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(32, 201, 151, 0.1);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--card-background);
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--accent-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}


/* Sliding Navigation */
.side-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transition: left 0.3s ease;
  z-index: 1001;
  padding: 2rem 0;
  box-shadow: var(--card-shadow);
}

.side-nav.open {
  overflow-y: scroll;
  left: 0;
}

.side-nav-header {
  padding: 0 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-nav {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-teal);
}

.nav-links {
  list-style: none;
}

.nav-links li {
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-links a:hover {
  background: rgba(32, 201, 151, 0.1);
  border-left-color: var(--accent-teal);
}

.nav-links a.active {
  background: rgba(32, 201, 151, 0.15);
  border-left-color: var(--accent-teal);
  color: var(--accent-teal);
  font-weight: 600;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 201, 151, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Footer */
.site-footer {
  background-color: var(--primary-gradient-start);
  /* Soft background */
  color: var(--text-secondary);
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid var(--divider-borders);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-content h3,
.footer-content h4 {
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

/* Optional underline decoration for headers */
.footer-content h3::after,
.footer-content h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-teal);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-left p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--accent-teal);
  transform: translateX(5px);
}

.footer-social ul,
.footer-social ul li {
  list-style: none;
  margin-bottom: 12px;
}

.footer-social ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-teal);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* very subtle divider */
  padding-top: 25px;
  padding-bottom: 10px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  color: var(--accent-teal);
  border: 1px solid var(--divider-borders);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--dynamic-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.3);
}

/* Header Share Button */
.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--dynamic-gradient);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.4);
}

.share-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(32, 201, 151, 0.6);
}

/* Custom Share Modal (No Bootstrap) */
.custom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-modal.show {
  display: flex;
  opacity: 1;
}

.custom-modal-dialog {
  width: 90%;
  max-width: 500px;
  margin: auto;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.custom-modal-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--divider-borders);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close-modal:hover {
  color: var(--text-heading);
}

.custom-modal-body {
  padding: 1.5rem;
  text-align: center;
}

.custom-modal-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.social-share-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--divider-borders);
  cursor: pointer;
}

.social-icon:hover {
  background: var(--dynamic-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

.input-group-custom {
  display: flex;
  border: 1px solid var(--divider-borders);
  border-radius: 8px;
  overflow: hidden;
}

.form-control-custom {
  max-width: 75%;
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  background: #fdfdfd;
  outline: none;
}

.btn-copy-custom {
  background: var(--accent-teal);
  border: none;
  border-left: 1px solid var(--divider-borders);
  padding: 0 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy-custom:hover {
  background: #19a17a;
}

/* Responsive Design */

/* ---------------------------------------- */


/* --- UPDATED HEADER/NAV/FOOTER STYLES --- */
/* Header */
.header {
  background: var(--primary-gradient);
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid var(--divider-borders); */
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* box-shadow: var(--card-shadow); */
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--card-shadow);
  background: rgba(255, 255, 255, 0.85);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: #02541a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo a {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #02541a;
  text-decoration: none;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #223;
  padding: 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(32, 201, 151, 0.1);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--card-background);
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--accent-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}


/* Sliding Navigation */
.side-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transition: left 0.3s ease;
  z-index: 1001;
  padding: 2rem 0;
  box-shadow: var(--card-shadow);
}

.side-nav.open {
  overflow-y: scroll;
  left: 0;
}

.side-nav-header {
  padding: 0 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-nav {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-teal);
}

.nav-links {
  list-style: none;
}

.nav-links li {
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-links a:hover {
  background: rgba(32, 201, 151, 0.1);
  border-left-color: var(--accent-teal);
}

.nav-links a.active {
  background: rgba(32, 201, 151, 0.15);
  border-left-color: var(--accent-teal);
  color: var(--accent-teal);
  font-weight: 600;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 201, 151, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Footer */
.site-footer {
  background-color: var(--primary-gradient-start);
  /* Soft background */
  color: var(--text-secondary);
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid var(--divider-borders);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-content h3,
.footer-content h4 {
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

/* Optional underline decoration for headers */
.footer-content h3::after,
.footer-content h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-teal);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-left p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--accent-teal);
  transform: translateX(5px);
}

.footer-social ul,
.footer-social ul li {
  list-style: none;
  margin-bottom: 12px;
}

.footer-social ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-teal);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* very subtle divider */
  padding-top: 25px;
  padding-bottom: 10px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  color: var(--accent-teal);
  border: 1px solid var(--divider-borders);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--dynamic-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.3);
}

/* Header Share Button */
.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--dynamic-gradient);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.4);
}

.share-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(32, 201, 151, 0.6);
}

/* Custom Share Modal (No Bootstrap) */
.custom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-modal.show {
  display: flex;
  opacity: 1;
}

.custom-modal-dialog {
  width: 90%;
  max-width: 500px;
  margin: auto;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.custom-modal-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--divider-borders);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close-modal:hover {
  color: var(--text-heading);
}

.custom-modal-body {
  padding: 1.5rem;
  text-align: center;
}

.custom-modal-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.social-share-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--divider-borders);
  cursor: pointer;
}

.social-icon:hover {
  background: var(--dynamic-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

.input-group-custom {
  display: flex;
  border: 1px solid var(--divider-borders);
  border-radius: 8px;
  overflow: hidden;
}

.form-control-custom {
  max-width: 75%;
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  background: #fdfdfd;
  outline: none;
}

.btn-copy-custom {
  background: var(--accent-teal);
  border: none;
  border-left: 1px solid var(--divider-borders);
  padding: 0 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy-custom:hover {
  background: #19a17a;
}

/* Responsive Design */

/* ---------------------------------------- */