/* Pixol Homepage Styles */

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color:            #6366F1;
  --light-color:              #FAFAF8;
  --dark-color:               #1F1E2C;
  --gray-color:               #F5F3F0;
  --bg-color:                 #FAFAF8;
  --bg-card:                  #FFFFFF;
  --accent-green:             #10B981;
  --text-primary:             #1F1E2C;
  --text-secondary:           #6B7280;
  --text-muted:               #9CA3AF;
  --border-color:             #E8E4DF;
}

/* Fonts */
:root {
    --body-font           : "Inter", sans-serif;
    --heading-font        : "General Sans", sans-serif;
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-primary);
}
p {
  font-size: 1.2em;
  color: var(--text-secondary);
}
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-medium {
  padding: 0.8em 2.8em;
  font-size: 1.1em;
  letter-spacing: 2px;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}


/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/* 1. Header
/*----------------------------------------------*/
.site-header {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease-out;
    background-color: rgba(250,250,248,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
    color: var(--text-primary);
}
.navbar-nav .nav-item a.nav-link {
    color: var(--text-secondary);
}
.navbar-nav .nav-item a.nav-link.active,
.navbar-nav .nav-item a.nav-link:focus,
.navbar-nav .nav-item a.nav-link:hover {
    color: var(--primary-color);
}
.navbar-toggler svg.navbar-icon {
    fill: var(--text-primary);
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
    box-shadow: none;
}
#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: var(--bg-card);
}
#header-nav .offcanvas-end {
    width: 500px;
}
.offcanvas.show .nav-item a.nav-link {
    font-size: 2em;
}
.offcanvas.show .offcanvas-body .navbar-nav {
    align-items: unset!important;
    padding-left: 20px;
}



/* =============================================
   PIXOL HOMEPAGE - Redesigned Styles
   ============================================= */

/* Brand name in navbar */
.brand-name {
  font-family: var(--heading-font);
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-row {
  min-height: calc(100vh - 160px);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 50px;
  padding: 0.4em 1.2em;
  font-size: 0.85em;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 1.5em;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--heading-font);
  font-size: 3.8em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5em;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--primary-color);
}
.hero-subtitle {
  font-size: 1.25em;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2em;
}
.hero-buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.8em;
  font-size: 1em;
  font-weight: 500;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.btn-coming-soon {
  position: relative;
}
.coming-soon-tag {
  font-size: 0.65em;
  background: var(--accent-green);
  color: var(--bg-color);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.3em;
}

/* Phone Mockup */
.hero-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone {
  position: relative;
  z-index: 2;
}
.hero-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
}
.phone-frame {
  width: 280px;
  height: 580px;
  background: #1F1E2C;
  border-radius: 36px;
  border: 3px solid #3D3B4D;
  padding: 12px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.phone-frame:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
}
.phone-notch {
  width: 100px;
  height: 24px;
  background: #1F1E2C;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #F5F3F0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Mock App UI inside phone */
.mock-app {
  padding: 40px 14px 14px;
  height: 100%;
  position: relative;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mock-title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1em;
  color: var(--text-primary);
}
.mock-count {
  font-size: 0.75em;
  color: var(--text-muted);
}
.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mock-photo {
  border-radius: 8px;
  aspect-ratio: 1;
  opacity: 0.85;
}
.mock-photo-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.mock-notification {
  position: absolute;
  bottom: 20px;
  left: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  animation: slide-up 0.6s ease-out 1s both;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.mock-notif-icon {
  width: 32px;
  height: 32px;
  background: rgba(16,185,129,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-notif-text {
  display: flex;
  flex-direction: column;
}
.mock-notif-title {
  font-size: 0.75em;
  font-weight: 600;
  color: var(--text-primary);
}
.mock-notif-desc {
  font-size: 0.65em;
  color: var(--text-muted);
}

@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 2.8em;
  }
  .phone-frame {
    width: 240px;
    height: 500px;
    transform: perspective(800px) rotateY(-5deg) rotateX(1deg);
  }
}
@media only screen and (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-row {
    min-height: auto;
  }
  .hero-title {
    font-size: 2.4em;
  }
  .hero-subtitle {
    font-size: 1.05em;
  }
  .hero-phone-wrapper {
    margin-top: 3em;
  }
  .phone-frame {
    width: 220px;
    height: 460px;
    transform: none;
  }
  .phone-frame:hover {
    transform: none;
  }
}

/* Section Titles */
.section-title {
  font-family: var(--heading-font);
  font-size: 2.4em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3em;
}
.section-subtitle {
  font-size: 1.2em;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2em;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.bento-item:hover {
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
/* Grid areas handle all placement */
@supports (grid-template-areas: "a") {
  .bento-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "auto-share  encrypt   collab"
      "storage     quality   signin";
  }
  .bento-grid > :nth-child(1) { grid-area: auto-share; }
  .bento-grid > :nth-child(2) { grid-area: encrypt; }
  .bento-grid > :nth-child(3) { grid-area: collab; }
  .bento-grid > :nth-child(4) { grid-area: storage; }
  .bento-grid > :nth-child(5) { grid-area: quality; }
  .bento-grid > :nth-child(6) { grid-area: signin; }
}

.bento-title {
  font-family: var(--heading-font);
  font-size: 1.3em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3em;
}
.bento-desc {
  font-size: 0.95em;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}
.bento-icon-lg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2em;
}
.bento-icon-lg svg {
  width: 26px;
  height: 26px;
}

/* Bento accent colors */
.bento-accent-indigo { border-color: rgba(99,102,241,0.12); }
.bento-accent-indigo:hover { border-color: rgba(99,102,241,0.3); }
.bento-accent-indigo .bento-icon-lg { background: rgba(99,102,241,0.08); }
.bento-accent-indigo .bento-icon-lg svg { fill: #6366F1; }

.bento-accent-green { border-color: rgba(16,185,129,0.12); }
.bento-accent-green:hover { border-color: rgba(16,185,129,0.3); }
.bento-accent-green .bento-icon-lg { background: rgba(16,185,129,0.08); }
.bento-accent-green .bento-icon-lg svg { fill: #10B981; }

.bento-accent-pink { border-color: rgba(236,72,153,0.12); }
.bento-accent-pink:hover { border-color: rgba(236,72,153,0.3); }
.bento-accent-pink .bento-icon-lg { background: rgba(236,72,153,0.08); }
.bento-accent-pink .bento-icon-lg svg { fill: #EC4899; }

.bento-accent-cyan { border-color: rgba(6,182,212,0.12); }
.bento-accent-cyan:hover { border-color: rgba(6,182,212,0.3); }
.bento-accent-cyan .bento-icon-lg { background: rgba(6,182,212,0.08); }
.bento-accent-cyan .bento-icon-lg svg { fill: #06B6D4; }

.bento-accent-amber { border-color: rgba(245,158,11,0.12); }
.bento-accent-amber:hover { border-color: rgba(245,158,11,0.3); }
.bento-accent-amber .bento-icon-lg { background: rgba(245,158,11,0.08); }
.bento-accent-amber .bento-icon-lg svg { fill: #F59E0B; }

.bento-accent-violet { border-color: rgba(139,92,246,0.12); }
.bento-accent-violet:hover { border-color: rgba(139,92,246,0.3); }
.bento-accent-violet .bento-icon-lg { background: rgba(139,92,246,0.08); }
.bento-accent-violet .bento-icon-lg svg { fill: #8B5CF6; }


@media only screen and (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "auto-share"
      "encrypt"
      "collab"
      "storage"
      "quality"
      "signin";
  }
}

/* How It Works — Step Panels */
.step-panel {
  margin-bottom: 2em;
}
.step-panel:last-child {
  margin-bottom: 0;
}
.step-panel-inner {
  display: flex;
  align-items: center;
  gap: 4em;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}
.step-panel-reverse .step-panel-inner {
  flex-direction: row-reverse;
}
.step-panel-reverse .step-text {
  text-align: right;
}
.step-panel-reverse .step-desc {
  margin-left: auto;
}
.step-visual {
  flex-shrink: 0;
}
.step-text {
  flex: 1;
}
.step-number {
  font-family: var(--heading-font);
  font-size: 4em;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-bottom: -0.15em;
}
.step-title {
  font-family: var(--heading-font);
  font-size: 1.6em;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}
.step-desc {
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* Mini phone in step panels */
.step-phone-mini {
  width: 200px;
  height: 380px;
  background: #1F1E2C;
  border-radius: 28px;
  border: 2px solid #3D3B4D;
  padding: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.step-phone-screen {
  width: 100%;
  height: 100%;
  background: #F5F3F0;
  border-radius: 20px;
  overflow: hidden;
}
.step-screen-content {
  padding: 24px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Step 1: Sign up screen */
.step-signup-logo {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.4em;
  color: white;
  margin-bottom: 4px;
}
.step-signup-title-text {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-signup-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.7em;
  font-weight: 500;
}
.step-signup-google {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.step-signup-phone {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* Step 2: Album creation screen */
.step-album-header {
  font-size: 0.9em;
  font-weight: 600;
  color: var(--text-primary);
  align-self: flex-start;
}
.step-album-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(99,102,241,0.3);
  font-size: 0.75em;
  color: var(--text-primary);
}
.step-album-members {
  display: flex;
  gap: 6px;
  align-self: flex-start;
}
.step-member {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: 600;
  color: white;
}
.step-member-add {
  background: #FFFFFF !important;
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
  font-size: 1em;
}
.step-album-create-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  font-size: 0.75em;
  font-weight: 600;
  margin-top: 4px;
}

/* Step 3: Auto share screen */
.step-screen-auto {
  gap: 10px;
}
.step-auto-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  position: relative;
}
.step-face-box {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid #10B981;
  border-radius: 6px;
  top: 25%;
  left: 30%;
  animation: face-pulse 2s ease-in-out infinite;
}
.step-face-box-2 {
  left: auto;
  right: 25%;
  top: 20%;
  animation-delay: 0.5s;
}
@keyframes face-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.step-auto-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-auto-albums {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-auto-album-tag {
  padding: 6px 14px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  font-size: 0.7em;
  color: #059669;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .step-panel-inner,
  .step-panel-reverse .step-panel-inner {
    flex-direction: column;
    padding: 2em 1.5em;
    gap: 2em;
    text-align: center;
  }
  .step-desc {
    max-width: none;
  }
  .step-phone-mini {
    width: 180px;
    height: 340px;
  }
  .step-number {
    font-size: 3em;
  }
}

/* Reviews Section — Stats + Marquee */
.reviews-section {
  overflow: hidden;
}

/* Stats row */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin-bottom: 4em;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--heading-font);
  font-size: 3.2em;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9em;
  color: var(--text-muted);
  margin-top: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.stat-stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBF24;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-color);
}

/* Marquee */
.marquee-wrap {
  padding-top: 1em;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  margin-bottom: 16px;
}
.marquee-left {
  animation: marquee-scroll-left 40s linear infinite;
}
.marquee-right {
  animation: marquee-scroll-right 45s linear infinite;
}
@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.marquee-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5em 1.8em;
}
.marquee-quote {
  font-size: 0.92em;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.8em;
}
.marquee-author {
  font-size: 0.8em;
  font-weight: 600;
  color: var(--text-muted);
}

@media only screen and (max-width: 767px) {
  .stats-row {
    gap: 1.5em;
  }
  .stat-value {
    font-size: 2.2em;
  }
  .marquee-card {
    width: 280px;
    padding: 1.2em 1.4em;
  }
}

/* CTA Section */
.cta-section {
  background: var(--bg-color);
}
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(129,140,248,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
}
.cta-title {
  font-family: var(--heading-font);
  font-size: 2.6em;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4em;
  letter-spacing: -0.02em;
}
.cta-subtitle {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 2em;
  max-width: 440px;
}
.cta-buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.cta-phone-wrapper {
  display: flex;
  justify-content: center;
}
.phone-frame-small {
  width: 220px;
  height: 460px;
  transform: perspective(800px) rotateY(8deg) rotateX(2deg);
}
.phone-frame-small:hover {
  transform: perspective(800px) rotateY(2deg) rotateX(1deg);
}

/* Mock album list */
.mock-album-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-album-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--bg-color);
  border-radius: 10px;
}
.mock-album-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mock-album-info {
  display: flex;
  flex-direction: column;
}
.mock-album-name {
  font-size: 0.8em;
  font-weight: 600;
  color: var(--text-primary);
}
.mock-album-meta {
  font-size: 0.65em;
  color: var(--text-muted);
}

@media only screen and (max-width: 767px) {
  .cta-card {
    padding: 2.5em 1.8em;
  }
  .cta-title {
    font-size: 2em;
  }
}

/* Footer Enhancements */
.footer-label {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.footer-links li {
  margin-bottom: 0.4em;
}
.footer-links li a {
  color: var(--text-secondary);
  font-size: 1em;
  transition: color 0.2s ease;
}
.footer-links li a:hover {
  color: var(--primary-color);
}
footer#footer {
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
}
footer#footer hr {
  border-color: var(--border-color);
}
#footer-bottom {
  background: var(--bg-color);
}
#footer-bottom .copyright p {
  color: var(--text-muted);
}

/* Social Icons */
.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}
.social-links svg:hover {
    color: var(--primary-color);
}
.social-links li {
  padding-right: 30px;
}
