/* ================= EMERGENCY LOGO FIX ================= */
.site-header .brand {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

.site-header .brand img {
  height: 70px !important;
  width: auto !important;
  display: block !important;
  max-width: 200px !important;
}

/* Make header visible */
.site-header {
  background: #000 !important;
  position: relative !important;
  z-index: 9999 !important;
}

.header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
/* ================= END EMERGENCY FIX ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000000;
  color: #f9fafb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Brand gradient and utility */

.gradient-bg {
  background-image: linear-gradient(135deg, #e91e63, #ffd700, #f44336);
}

.gradient-text {
  background-image: linear-gradient(135deg, #e91e63, #ffd700, #f44336);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background-color: #050505;
}

.section-accent {
  padding: 4rem 0;
  background-image: linear-gradient(145deg, rgba(233, 30, 99, 0.12), rgba(244, 67, 54, 0.1));
  border-top: 1px solid rgba(249, 250, 251, 0.06);
  border-bottom: 1px solid rgba(249, 250, 251, 0.06);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #d1d5db;
  max-width: 38rem;
}

/* Loader */

#page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #111827 0%, #000000 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.4s ease;
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 3px solid rgba(233, 30, 99, 0.4);
  border-top-color: #ffd700;
  border-right-color: #f44336;
  animation: spin 0.9s linear infinite;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.loader-inner p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 250, 251, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 56px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  color: #e5e7eb;
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ffffff;
  border-color: #e91e63;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ffffff;
  border-color: #ffd700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #f9fafb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

.primary-btn {
  background-image: linear-gradient(135deg, #e91e63, #ffd700, #f44336);
  color: #000000;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.outline-btn {
  border-color: rgba(249, 250, 251, 0.4);
  background-color: transparent;
  color: #f9fafb;
}

.outline-btn:hover {
  border-color: #ffd700;
  background-color: rgba(15, 23, 42, 0.7);
}

.ghost-btn {
  background-color: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.2);
}

.ghost-btn:hover {
  background-color: rgba(17, 24, 39, 0.9);
  border-color: rgba(249, 250, 251, 0.5);
}

.text-btn {
  background: transparent;
  padding: 0.2rem 0;
  border-radius: 0;
  border: none;
  font-size: 0.85rem;
  color: #f9fafb;
  opacity: 0.9;
}

.text-btn:hover {
  opacity: 1;
}

/* Hero */

.hero-section {
  position: relative;
  min-height: min(80vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(249, 250, 251, 0.06);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.85)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-parallax-layer {
  position: absolute;
  inset: -30%;
  background-image: radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.2), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(244, 67, 54, 0.25), transparent 60%);
  opacity: 0.5;
  z-index: -3;
}

.hero-content {
  position: relative;
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  max-width: 32rem;
}

.hero-subtitle {
  max-width: 30rem;
  margin-top: 1rem;
  color: #e5e7eb;
}

.hero-typewriter {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #facc15;
  min-height: 1.4em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero-floating-sweets .float-dot {
  position: absolute;
  border-radius: 999px;
  background-image: radial-gradient(circle, rgba(249, 250, 251, 0.85), rgba(249, 250, 251, 0));
  opacity: 0.35;
  animation: float 7s ease-in-out infinite alternate;
}

.float-dot.dot-1 {
  width: 120px;
  height: 120px;
  left: -40px;
  top: 30%;
}

.float-dot.dot-2 {
  width: 80px;
  height: 80px;
  right: 10%;
  top: 15%;
  animation-delay: 1.2s;
}

.float-dot.dot-3 {
  width: 100px;
  height: 100px;
  right: -30px;
  bottom: 10%;
  animation-delay: 2s;
}

/* Cards & grids */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.sweet-card {
  background: linear-gradient(150deg, #020617, #020617, #111827);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.06);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sweet-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(250, 204, 21, 0.75);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.9);
}

.sweet-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.sweet-body {
  padding: 1rem 1.1rem 1.1rem;
}

.sweet-body h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.25rem;
}

.sweet-body p {
  font-size: 0.9rem;
}

.sweet-price {
  margin-top: 0.6rem;
  font-weight: 600;
  color: #facc15;
}

.card-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.72);
  border-radius: 1.3rem;
  padding: 1.3rem 1.2rem 1.3rem;
  border: 1px solid rgba(249, 250, 251, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 99, 0.7);
  background-color: rgba(15, 23, 42, 0.95);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  background-image: linear-gradient(135deg, #e91e63, #ffd700);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.4rem;
}

.services-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Branch grid */

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2.2rem;
}

.branch-card {
  background-color: #020617;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.branch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.8);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.95);
}

.branch-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.branch-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.branch-body h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.3rem;
}

.branch-address {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.branch-hours {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

.branch-contact {
  margin-top: 0.6rem;
  font-size: 0.86rem;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.testimonial-card {
  background-color: #020617;
  border-radius: 1.3rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(249, 250, 251, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Instagram */

.instagram-section {
  padding-bottom: 4.5rem;
}

.instagram-inner {
  border-radius: 999px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background-image: linear-gradient(120deg, rgba(233, 30, 99, 0.16), rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
}

/* Page hero (inner pages) */

.page-hero {
  padding: 4.2rem 0 2.6rem;
  background-image: radial-gradient(circle at top, rgba(233, 30, 99, 0.14), transparent 60%),
    radial-gradient(circle at bottom, rgba(244, 67, 54, 0.18), transparent 60%);
  border-bottom: 1px solid rgba(249, 250, 251, 0.08);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.page-subtitle {
  max-width: 38rem;
  color: #e5e7eb;
}

/* Menu page */

.menu-filter-bar,
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  padding: 0.4rem 0.9rem;
  background-color: transparent;
  font-size: 0.8rem;
  color: #e5e7eb;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.filter-btn.active {
  background-image: linear-gradient(135deg, #e91e63, #ffd700);
  color: #000000;
  border-color: transparent;
}

.filter-btn:hover:not(.active) {
  border-color: rgba(250, 204, 21, 0.7);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.menu-item-card {
  background-color: #020617;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.menu-item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 30, 99, 0.8);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.95);
}

.menu-item-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-item-body {
  padding: 1rem 1.1rem 1.15rem;
}

.menu-item-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.menu-item-price {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #facc15;
}

.menu-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

/* About page */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.about-text p + p {
  margin-top: 0.8rem;
}

.about-highlight {
  background-color: #020617;
  border-radius: 1.25rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(249, 250, 251, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.about-highlight h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.about-highlight ul {
  font-size: 0.9rem;
}

.about-highlight li + li {
  margin-top: 0.4rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quality-card {
  background-color: #020617;
  border-radius: 1.25rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(249, 250, 251, 0.06);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}

.timeline {
  margin-top: 2.2rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-image: linear-gradient(180deg, #e91e63, #ffd700, #f44336);
  opacity: 0.8;
}

.timeline-item {
  position: relative;
  padding-left: 2.6rem;
  padding-bottom: 1.6rem;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, #e91e63, #ffd700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #000000;
  font-weight: 600;
}

.timeline-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: #d1d5db;
}

.team-section {
  padding-bottom: 4.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.team-card {
  background-color: #020617;
  border-radius: 1.25rem;
  padding: 1.1rem 1.15rem 1.3rem;
  border: 1px solid rgba(249, 250, 251, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85);
}

.team-photo-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 1rem;
  background-image: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(17, 24, 39, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f9fafb;
  margin-bottom: 0.7rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  background-color: #020617;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.8);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.95);
}

.gallery-item figcaption {
  padding: 0.6rem 0.7rem 0.75rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
  padding: 1rem;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(900px, 96vw);
  max-height: 70vh;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 250, 251, 0.15);
}

.lightbox p {
  max-width: 40rem;
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  font-size: 2rem;
  border: none;
  background: none;
  color: #f9fafb;
  cursor: pointer;
}

/* Contact page */

.contact-section {
  border-bottom: 1px solid rgba(249, 250, 251, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.branch-column h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.35rem;
}

.map-wrapper {
  margin-top: 0.7rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.branch-address {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.branch-details {
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

.branch-hours {
  margin-top: 0.4rem;
  color: #d1d5db;
}

.branch-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-form-section {
  padding-top: 3.2rem;
  padding-bottom: 4.4rem;
}

.contact-form {
  margin-top: 1.6rem;
  background-color: #020617;
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem 1.8rem;
  border: 1px solid rgba(249, 250, 251, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 250, 251, 0.14);
  padding: 0.55rem 0.7rem;
  background-color: #020617;
  color: #f9fafb;
  font-size: 0.9rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

.form-actions {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.82rem;
  color: #d1d5db;
}

/* Footer */

.site-footer {
  padding: 2.8rem 0 1.8rem;
  border-top: 1px solid rgba(249, 250, 251, 0.08);
  background-color: #000000;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 1.8rem;
  margin-bottom: 1.6rem;
}

.footer-logo {
  width: 72px;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #d1d5db;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.footer-links li + li {
  margin-top: 0.25rem;
}

.footer-contact p {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.footer-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(249, 250, 251, 0.08);
  padding-top: 0.9rem;
  font-size: 0.78rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-madeby {
  color: #e5e7eb;
}

/* Animations */

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-page {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fade-page.loaded {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-14px);
  }
}
/* Video Logo Styles */
.brand-logo-video {
  max-height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 4px;
}

/* For mobile */
@media (max-width: 768px) {
  .brand-logo-video {
    max-height: 50px;
    max-width: 150px;
  }
}/* ============================================
   VIDEO LOGO STYLES - UPDATED
   ============================================ */

.logo-container {
  position: relative;
  display: inline-block;
  width: 180px;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
}

/* Video styling */
.brand-logo-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #000; /* Black background if video transparent */
}

/* Static logo fallback (hidden by default) */
.brand-logo-fallback,
.brand-logo-static {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none; /* Hidden unless needed */
}

/* If video fails, show fallback */
.brand-logo-video:not([src]) + .brand-logo-fallback,
.brand-logo-video.error + .brand-logo-fallback {
  display: block;
}

/* Mobile: Always show static logo for better performance */
@media (max-width: 768px) {
  .brand-logo-video {
    display: none;
  }
  .brand-logo-static {
    display: block;
  }
}

/* Brand container adjustment for video */
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Header adjustment for video logo */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-madeby a {
  color: #ffd700; /* gold accent */
  text-decoration: none;
  font-weight: 600;
}

.footer-madeby a:hover {
  color: #e91e63; /* pink hover */
}
.footer-madeby a {
  color: #ffd700; /* gold accent */
  text-decoration: none;
  font-weight: 600;
}

.footer-madeby a:hover {
  color: #e91e63; /* pink hover */
}
