:root {
  --gold: #d4a65a;
  --gold-dark: #b9893b;
  --black: #0b0b0d;
  --dark: #141416;
  --soft-dark: #1d1d21;
  --light: #f7f3ed;
  --text: #222;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
  font-family: 'Playfair Display', serif;
}

.section-padding { padding: 100px 0; }
.bg-dark-soft { background: var(--soft-dark); }

#mainNavbar {
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  transition: 0.3s ease;
}

#mainNavbar.navbar-scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 13, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.navbar-brand-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-right: 0.75rem;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(212,166,90,0.22), transparent 36%),
    linear-gradient(135deg, rgba(11,11,13,0.98), rgba(20,20,22,0.96));
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__content {
  text-align: center;
  width: min(86vw, 280px);
}

.loading-screen__logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212,166,90,0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}

.loading-screen__bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.16);
  margin-bottom: 12px;
}

.loading-screen__bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f7d894);
  transition: width 0.1s linear;
}

.loading-screen__percent {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.navbar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  white-space: nowrap;
}

.navbar-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
}

.navbar-status.open {
  color: #dcfce7;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.35);
}

.navbar-status.open .navbar-status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.navbar-status.closed {
  color: #ffe4e6;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
}

.navbar-status.closed .navbar-status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.site-logo {
  display: inline-block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212, 166, 90, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  background: #0b0b0d;
}

.navbar-logo {
  width: 52px;
  height: 52px;
  margin-right: 12px;
}

.brand-text {
  color: #fff;
  line-height: 1;
}

.footer-logo {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
}

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 25px;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #111;
  transform: translateY(-2px);
}

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.88), rgba(0,0,0,0.45)),
    radial-gradient(circle at 75% 45%, rgba(212,166,90,0.28), transparent 30%),
    url('../assets/hero.svg') center/cover no-repeat;
  position: relative;
}

.hero-content { animation: fadeUp 0.9s ease both; }

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.about-card {
  position: relative;
  min-height: 460px;
}

.about-img {
  width: 100%;
  height: 460px;
  border-radius: 28px;
  background: url('../assets/about.svg') center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.experience-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background: var(--gold);
  color: #111;
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
}

.experience-badge span {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.experience-badge small {
  max-width: 95px;
  display: block;
  font-weight: 700;
}

.feature-box,
.service-card,
.price-card,
.booking-form {
  border-radius: 24px;
  padding: 28px;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.feature-box i,
.service-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-box p { color: rgba(255,255,255,0.55); margin-bottom: 0; }

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.service-card h4 { font-weight: 700; margin-bottom: 12px; }
.service-card p { color: #666; margin-bottom: 0; }

.portfolio-subtitle { max-width: 650px; }

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  background: #111;
}

.portfolio-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.45s ease;
}

.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
}

.portfolio-overlay h5 { font-weight: 800; margin: 0; }

.price-card {
  position: relative;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(212,166,90,0.24), rgba(255,255,255,0.06));
  border-color: rgba(212,166,90,0.5);
}

.price-card h4 { color: var(--gold); font-weight: 800; }
.price-card h3 { font-size: 3rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.price-card li { margin: 12px 0; color: rgba(255,255,255,0.72); }
.price-card i { color: var(--gold); margin-right: 8px; }

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #111;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.contact-info i { color: var(--gold); font-size: 1.3rem; }

.booking-form {
  background: #fff;
  box-shadow: 0 25px 80px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 13px 15px;
  border: 1px solid #e4e4e4;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212,166,90,0.18);
}

.footer {
  background: var(--black);
  padding: 60px 0 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  color: #fff;
  margin-left: 8px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}

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

@media (max-width: 991px) {
  #mainNavbar { background: rgba(11, 11, 13, 0.98); }
  .navbar-brand-group { margin-right: auto; }
  .navbar-nav { padding: 20px 0; }
  .section-padding { padding: 75px 0; }
  .hero-section { text-align: center; }
  .hero-content .d-flex { justify-content: center; }
}

@media (max-width: 576px) {
  .navbar-brand { font-size: 1.4rem; }
  .navbar-logo { width: 44px; height: 44px; margin-right: 10px; }
  .footer-brand { align-items: flex-start !important; }
  .footer-logo { width: 60px; height: 60px; }
  .display-3 { font-size: 2.6rem; }
  .btn-lg { width: 100%; }
  .about-card, .about-img { min-height: 340px; height: 340px; }
  .experience-badge {
    right: 12px;
    left: 12px;
    bottom: -35px;
    justify-content: center;
  }
  .portfolio-card img { height: 240px; }
  .section-padding { padding: 65px 0; }
}

/* =========================
   Admin Panel - Nissi Theme
========================= */
.admin-open-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  border: 1px solid rgba(212,166,90,0.55);
  background: rgba(11,11,13,0.92);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.admin-open-btn span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
}

.admin-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.admin-panel-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.admin-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 94vw);
  height: 100vh;
  z-index: 1070;
  transform: translateX(105%);
  transition: 0.28s ease;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,166,90,0.18), transparent 35%),
    linear-gradient(180deg, #111114, #1d1d21);
  color: #fff;
  box-shadow: -25px 0 80px rgba(0,0,0,0.55);
  border-left: 1px solid rgba(212,166,90,0.25);
  overflow-y: auto;
}

.admin-panel.show { transform: translateX(0); }

.admin-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-panel-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0;
}

.admin-panel-header small { color: rgba(255,255,255,0.62); }
.admin-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 4px; font-size: .78rem; }

.admin-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.admin-panel-body { padding: 20px 24px 28px; }

.admin-note {
  background: rgba(212,166,90,0.12);
  border: 1px solid rgba(212,166,90,0.25);
  color: rgba(255,255,255,0.82);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 16px;
  font-size: .92rem;
}

.admin-accordion .accordion-item {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}

.admin-accordion .accordion-button {
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  box-shadow: none;
}

.admin-accordion .accordion-button:not(.collapsed) {
  background: rgba(212,166,90,0.16);
  color: var(--gold);
}

.admin-accordion .accordion-button::after { filter: invert(1); }
.admin-accordion .accordion-body { color: #fff; }

.admin-grid {
  display: grid;
  gap: 13px;
}

.admin-grid label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  font-size: .92rem;
}

.admin-input,
.admin-input:focus,
.export-code,
.export-code:focus {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-color: rgba(212,166,90,0.28);
}

.admin-input::placeholder { color: rgba(255,255,255,0.45); }
.form-control-color.admin-input { width: 100%; min-height: 48px; padding: 8px; }

.admin-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-alert {
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(25,135,84,0.18);
  color: #e9fff3;
  border: 1px solid rgba(25,135,84,0.35);
}

.admin-export-modal .modal-content,
.admin-export-modal {
  background: #151519;
  color: #fff;
  border: 1px solid rgba(212,166,90,0.25);
}

.export-code {
  font-family: Consolas, Monaco, monospace;
  font-size: .82rem;
}

@media (max-width: 576px) {
  .admin-open-btn { right: 12px; bottom: 12px; padding: 9px 13px; }
  .admin-panel-header { padding: 20px; }
  .admin-panel-body { padding: 18px 20px 24px; }
}

.admin-login-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(212,166,90,0.25);
  border-radius: 22px;
  padding: 18px;
  margin: 18px 0;
  color: #fff;
}

.admin-login-card label {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.admin-cloud-status,
.admin-user-row {
  background: rgba(212,166,90,0.10);
  border: 1px solid rgba(212,166,90,0.22);
  color: rgba(255,255,255,0.82);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.admin-user-row span {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}


.admin-file-input {
  margin-top: -6px;
  margin-bottom: 8px;
  cursor: pointer;
}

.admin-grid input[data-admin-input="image"] {
  font-size: 0.8rem;
}


/* =========================
   Full Responsive Upgrade
========================= */

/* Better section spacing on all screens */
section {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}

/* Navbar */
.navbar-toggler {
  border-color: rgba(212,166,90,0.45);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .15rem rgba(212,166,90,0.25);
}

.navbar-collapse {
  transition: 0.25s ease;
}

/* Hero */
.hero-section {
  display: flex;
  align-items: center;
  padding-top: 88px;
}

.hero-content {
  max-width: 760px;
}

.hero-content .lead {
  max-width: 680px;
}

/* Cards and forms */
.service-card,
.price-card,
.booking-form,
.feature-box {
  height: 100%;
}

.booking-form {
  max-width: 100%;
}

.form-control,
.form-select,
.btn {
  min-height: 46px;
}

/* Portfolio */
.portfolio-card {
  height: 100%;
}

.portfolio-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 230px;
}

/* Footer */
.footer-brand {
  min-width: 0;
}

.footer-brand p,
.footer-brand h3 {
  overflow-wrap: anywhere;
}

/* Admin panel responsiveness */
.admin-panel {
  max-width: 100vw;
}

.admin-open-btn {
  max-width: calc(100vw - 24px);
}

.admin-grid textarea {
  resize: vertical;
}

.export-code {
  max-width: 100%;
}

/* Large tablets */
@media (max-width: 1199px) {
  .section-padding {
    padding: 85px 0;
  }

  .display-3 {
    font-size: 3.6rem;
  }

  .portfolio-card img {
    min-height: 250px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  body {
    padding-top: 0;
  }

  #mainNavbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(11,11,13,0.98);
    border: 1px solid rgba(212,166,90,0.18);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-link {
    padding: 12px 8px !important;
    margin: 0;
  }

  .navbar-nav .btn-gold {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
    padding: 135px 0 88px;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .about-card {
    max-width: 620px;
    margin: 0 auto 24px;
  }

  .contact-info p {
    align-items: flex-start;
  }

  .footer,
  .footer .text-lg-center,
  .footer .text-lg-end {
    text-align: center !important;
  }

  .footer-brand {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    display: flex;
    gap: 10px;
  }

  .social-links a {
    margin-left: 0;
  }
}

/* Phones */
@media (max-width: 767px) {
  .section-padding {
    padding: 62px 0;
  }

  .navbar-logo {
    width: 42px;
    height: 42px;
  }

  .navbar-brand {
    font-size: 1.35rem;
    max-width: calc(100vw - 92px);
  }

  .brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-section {
    padding: 122px 0 70px;
    background-position: center;
  }

  .hero-content .section-kicker {
    font-size: 0.74rem;
  }

  .display-3,
  .hero-content h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem) !important;
    line-height: 1.08;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .hero-content .d-flex {
    width: 100%;
  }

  .hero-content .btn {
    width: 100%;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .about-card,
  .about-img {
    min-height: 315px;
    height: 315px;
  }

  .experience-badge {
    padding: 16px 18px;
  }

  .experience-badge span {
    font-size: 2rem;
  }

  .service-card,
  .price-card,
  .booking-form,
  .feature-box {
    padding: 22px;
    border-radius: 20px;
  }

  .portfolio-card {
    border-radius: 20px;
  }

  .portfolio-card img {
    min-height: 220px;
  }

  .portfolio-overlay {
    padding: 20px;
  }

  .price-card h3 {
    font-size: 2.35rem;
  }

  .popular {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .admin-panel {
    width: 100vw;
  }

  .admin-panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(17,17,20,0.96);
    backdrop-filter: blur(12px);
  }

  .admin-panel-header h4 {
    font-size: 1.55rem;
  }

  .admin-accordion .accordion-button {
    padding: 14px;
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .navbar-logo {
    width: 38px;
    height: 38px;
    margin-right: 8px;
  }

  .navbar-brand {
    font-size: 1.18rem;
  }

  .navbar-toggler {
    padding: 5px 8px;
  }

  .hero-section {
    padding: 112px 0 58px;
  }

  .display-3,
  .hero-content h1 {
    font-size: 2.05rem !important;
  }

  .lead {
    font-size: 0.96rem;
  }

  .btn-lg {
    padding: 11px 18px;
    font-size: 1rem;
  }

  .about-card,
  .about-img {
    min-height: 270px;
    height: 270px;
  }

  .experience-badge {
    left: 10px;
    right: 10px;
    bottom: -28px;
  }

  .portfolio-card img {
    min-height: 200px;
  }

  .booking-form {
    padding: 18px;
  }

  .admin-open-btn {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .admin-open-btn span {
    width: 22px;
    height: 22px;
  }

  .admin-panel-body {
    padding: 16px;
  }

  .admin-login-card {
    padding: 15px;
  }
}

/* Very small phones */
@media (max-width: 340px) {
  .brand-text {
    max-width: 90px;
  }

  .display-3,
  .hero-content h1 {
    font-size: 1.82rem !important;
  }

  .section-title {
    font-size: 1.62rem;
  }

  .service-card,
  .price-card,
  .booking-form,
  .feature-box {
    padding: 16px;
  }

  .admin-panel-header {
    padding: 16px;
  }

  .admin-panel-header h4 {
    font-size: 1.35rem;
  }
}


/* Instagram feed connection */
.instagram-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
  background: rgba(212,166,90,0.16);
  border: 1px solid rgba(212,166,90,0.34);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.instagram-feed-link:hover {
  background: var(--gold);
  color: #111;
}

.instagram-feed-status {
  min-height: 22px;
}

.instagram-linked-card {
  cursor: pointer;
}

.instagram-linked-card:focus {
  outline: 3px solid rgba(212,166,90,0.45);
  outline-offset: 4px;
}

@media (max-width: 576px) {
  .instagram-feed-link {
    width: 100%;
    justify-content: center;
  }
}


/* Optional portfolio image text */
.portfolio-overlay h5:empty {
  display: none;
}

.portfolio-overlay:has(h5:empty) {
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 55%);
}
