/* liveraj.com — Premium Glassmorphism UI */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #e8f4fd;
  --accent: #2196f3;
  --accent-light: #64b5f6;
  --accent-dark: #0d47a1;
  --accent-glow: rgba(33, 150, 243, 0.45);
  --text: #1a1a2e;
  --text-muted: rgba(26, 26, 46, 0.62);
  --glass-bg: rgba(255, 255, 255, 0.52);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-border-soft: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(13, 71, 161, 0.1), 0 2px 8px rgba(33, 150, 243, 0.06);
  --glass-shadow-hover: 0 20px 50px rgba(13, 71, 161, 0.18), 0 8px 24px rgba(33, 150, 243, 0.12);
  --success: #4caf50;
  --error: #f44336;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body,
body.admin-body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.site-body,
body.admin-body.site-body {
  background: #e8f4fd;
}

/* Premium ambient layers */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(100, 181, 246, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(144, 202, 249, 0.3), transparent 55%),
    linear-gradient(160deg, #dbeafe 0%, #e8f4fd 40%, #f0f9ff 100%);
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated background orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: floatOrb 18s var(--ease-out) infinite alternate;
}

.bg-orbs span:nth-child(1) {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #64b5f6, transparent 70%);
  top: -120px;
  left: -80px;
}

.bg-orbs span:nth-child(2) {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #90caf9, transparent 70%);
  bottom: 10%;
  right: -60px;
  animation-delay: -6s;
}

.bg-orbs span:nth-child(3) {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #bbdefb, transparent 70%);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

.bg-orbs span:nth-child(4) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.25), transparent 70%);
  bottom: 25%;
  left: 8%;
  animation-delay: -9s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.08); }
}

.site-header,
main,
.site-footer,
.admin-layout {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Glass components */
.glass-card,
.card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 1.75rem;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}

.glass-card::before,
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
}

.glass-card::after,
.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 65%);
  pointer-events: none;
  opacity: 0.6;
}

.glass-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(255, 255, 255, 0.9);
}

.glass-inner {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border-soft);
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo-link img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(33, 150, 243, 0.25));
}

.nav-desktop {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.nav-desktop a:hover {
  background: rgba(33, 150, 243, 0.12);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-desktop a.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.35);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--accent-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 1.35rem;
  gap: 0.5rem;
}

.nav-mobile.open {
  display: flex;
  animation: slideDown 0.35s var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 10px;
}

.nav-mobile a.active {
  background: rgba(33, 150, 243, 0.15);
  color: var(--accent-dark);
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* Main */
.page-main,
main {
  flex: 1;
  padding: 2.5rem 0 4rem;
}

.hero-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 2.25rem;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}

.page-title .gradient-text {
  display: inline;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 12px rgba(33, 150, 243, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}

.label-muted {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text-muted);
  font-style: normal;
}

/* Video */
.video-section {
  padding: 1.5rem;
}

.video-wrapper,
.glass-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 40px rgba(33, 150, 243, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(33, 150, 243, 0.15);
}

.video-meta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.video-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.video2-locked {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 71, 161, 0.45);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

.video2-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.password-box {
  padding: 1.75rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.5s var(--ease-out);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.password-box h3 {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 600;
}

.password-input-wrap {
  position: relative;
  margin-bottom: 0.85rem;
}

.password-input-wrap input {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  border: 1px solid rgba(33, 150, 243, 0.25);
  border-radius: 12px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.toggle-password {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.password-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.password-error.show { display: block; }

/* Per-video details (under each video on home) */
.video-details-wrap {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(33, 150, 243, 0.12);
}

.details-sub-label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.titles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.title-chip {
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-dark);
  text-align: center;
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.08);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.title-chip:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(33, 150, 243, 0.15);
}

.view-counter {
  text-align: center;
  width: 100%;
  justify-content: center;
  margin: 1rem auto 0;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

/* card aliases glass-card (defined above) */

/* Grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .items-grid { grid-template-columns: 1fr; }
}

.item-card {
  overflow: hidden;
  padding: 0;
}

.item-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.item-card:hover img {
  transform: scale(1.05);
}

.item-card-body {
  padding: 1.35rem;
}

.item-card-body h3 {
  margin: 0 0 0.5rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

/* Wishes */
.wishes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wishes-head {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.wish-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.wish-left {
  width: 100%;
}

.wish-right h3 {
  margin: 0 0 0.3rem;
  color: #111827;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.wish-desc {
  margin: 0 0 0.2rem;
  color: #374151;
  font-size: 0.95rem;
}

.wish-meta {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .wishes-head {
    grid-template-columns: 1fr;
    font-size: 1.2rem;
  }
  .wishes-head span:last-child {
    display: none;
  }
  .wish-row {
    grid-template-columns: 1fr;
  }
}

.wish-thumb-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s var(--ease-out);
}

.wish-thumb-wrap:hover {
  transform: scale(1.02);
}

.wish-thumb-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wish-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 71, 161, 0.35);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}

.wish-thumb-wrap:hover .play-overlay {
  background: rgba(13, 71, 161, 0.5);
}

.play-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Photos */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-card {
  padding: 0.75rem;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.photo-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--accent-dark);
}

.photo-card p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .photos-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
.about-page {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.75rem;
}

.about-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-breadcrumb a {
  color: var(--accent-dark);
  font-weight: 600;
}

.about-breadcrumb span::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.about-heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--accent-dark);
}

.about-brand-name {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-transform: lowercase;
}

.about-block {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.about-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.about-line {
  margin: 0.2rem 0;
  color: var(--text-muted);
}

.about-line a {
  color: var(--accent-dark);
  font-weight: 600;
}

.about-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
  color: var(--accent-dark);
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-map-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
  color: var(--accent-dark);
}

.about-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.about-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff !important;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.35);
  transition: transform 0.25s;
}

.about-social-icon:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

.about-social-empty {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-logo {
  width: 130px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(33, 150, 243, 0.3));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-text {
  font-size: 1.08rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(33, 150, 243, 0.45);
  color: #fff !important;
}

/* Forms */
.form-card { max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 1.35rem; }

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}


.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(33, 150, 243, 0.45);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.btn-block { width: 100%; }

.btn-danger {
  background: linear-gradient(135deg, #ef5350, #f44336);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.35);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Footer */
.site-footer,
.glass-footer {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid var(--glass-border);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-brand {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.footer-brand span {
  background: linear-gradient(120deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Admin */
body.admin-body.site-body {
  background: transparent;
}

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
}

.admin-login-card h1 {
  text-align: center;
  margin: 0 0 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.login-error {
  background: rgba(244, 67, 54, 0.12);
  color: var(--error);
  padding: 0.75rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: none;
}

.login-error.show { display: block; }

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border-right: 1px solid var(--glass-border);
  box-shadow: 8px 0 32px rgba(13, 71, 161, 0.06);
  padding: 1.5rem 0;
  flex-shrink: 0;
}

.admin-sidebar h2 {
  padding: 0 1.25rem;
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.admin-nav { list-style: none; margin: 0; padding: 0; }

.admin-nav button {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.25rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: background 0.25s, color 0.25s;
}

.admin-nav button:hover,
.admin-nav button.active {
  background: rgba(33, 150, 243, 0.12);
  color: var(--accent-dark);
  border-left-color: var(--accent);
}

.admin-main { flex: 1; display: flex; flex-direction: column; }

.admin-topbar {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.05);
}

.admin-topbar h1 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.admin-content { padding: 1.5rem; flex: 1; }

.admin-section { display: none; }
.admin-section.active { display: block; animation: fadeUp 0.4s var(--ease-out); }

.admin-section h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.admin-form .form-group { max-width: 540px; }

.admin-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -0.5rem 0 1rem;
}

.admin-table,
.glass-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.admin-table th {
  background: rgba(33, 150, 243, 0.08);
  font-weight: 600;
  color: var(--accent-dark);
}

.admin-table img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease-out);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
}

.toast.show { transform: translateY(0); }
.toast.success { background: rgba(76, 175, 80, 0.92); }
.toast.error { background: rgba(244, 67, 54, 0.92); }

.image-preview {
  max-width: 200px;
  margin-top: 0.5rem;
  border-radius: 12px;
  display: none;
}

.image-preview.show { display: block; }

@media (max-width: 768px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .admin-nav {
    display: flex;
    flex-wrap: wrap;
  }
  .admin-nav button {
    flex: 1 1 45%;
    border-left: none;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   liveraj.com — Premium Compact Redesign & Single-Page Scroll Overrides
   ========================================================================== */

/* Compact layout overrides */
.page-main, main {
  padding: 1rem 0 2rem !important;
}

.hero-block {
  margin-bottom: 0.75rem !important;
}

.hero-title {
  font-size: clamp(1.45rem, 3.5vw, 1.85rem) !important;
  margin: 0 0 0.15rem !important;
}

.hero-sub {
  font-size: 0.9rem !important;
}

.page-title {
  margin: 0 0 1.25rem !important;
  font-size: clamp(1.4rem, 3vw, 1.75rem) !important;
}

.video-section {
  padding: 1rem !important;
  margin-bottom: 1.25rem !important;
}

.video-meta {
  margin-top: 0.65rem !important;
  padding-top: 0.6rem !important;
}

.video-meta h2 {
  font-size: 1.15rem !important;
  margin-bottom: 0.15rem !important;
}

.video-meta p {
  font-size: 0.88rem !important;
}

.video-details-wrap {
  margin-top: 0.65rem !important;
  padding-top: 0.6rem !important;
}

.details-sub-label {
  margin: 0 0 0.35rem !important;
  font-size: 0.7rem !important;
}

/* Videos Grid: 2 columns on desktop, 1 on mobile */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .logo-link img {
    height: 44px !important;
  }
}

/* Styled text lines for details (Foto Freaks Style) */
.details-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.details-text-line {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

/* The Bride & Groom main header (Foto Freaks inspired) */
.details-text-line:nth-child(2) {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Redesigned For Sale: Row list layout */
.forsale-row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem !important;
  margin-bottom: 1rem;
}

.forsale-left {
  width: 100%;
}

.forsale-left img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.forsale-row-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.forsale-row-body p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.forsale-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.22);
  transition: transform 0.25s var(--ease-spring);
}

.forsale-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
}

@media (max-width: 576px) {
  .forsale-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  .forsale-left img {
    height: 140px;
  }
  .forsale-buy-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Premium Custom About Us layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-card {
  padding: 1rem;
  text-align: center;
  transition: transform 0.25s var(--ease-spring);
}

.about-card:hover {
  transform: translateY(-3px);
}

.about-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.about-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.about-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.full-width-card {
  grid-column: 1 / -1;
}

.about-contact-block,
.about-social-block {
  padding: 1.15rem;
  text-align: center;
  margin-bottom: 1rem;
}

.about-contact-block h3,
.about-social-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-location-text {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.about-location-text i {
  color: #ef5350;
  margin-right: 0.25rem;
}

.about-contact-links {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent-dark) !important;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
}

.whatsapp-pill {
  border-color: #25D366;
  color: #128C7E !important;
}

.catalog-pill {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff !important;
  border-color: transparent;
}

.about-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.youtube-btn {
  background: linear-gradient(135deg, #ff0000, #c30000) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25) !important;
}

.youtube-btn:hover {
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35) !important;
}

@media (max-width: 576px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-contact-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-pill {
    width: 100%;
    justify-content: center;
  }
}

/* Pagination & Google Maps & Extra Socials */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.btn-page {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  transition: all 0.25s var(--ease-spring);
}

.btn-page:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-page.active {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-page.prev-next {
  width: auto;
  padding: 0 1.2rem;
  border-radius: 999px;
}

.btn-page.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.about-map-block {
  margin-top: 1.5rem;
}

.map-embed-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin-top: 0.8rem;
  background: var(--glass-bg);
  height: 320px;
  width: 100%;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.facebook-btn {
  background: linear-gradient(135deg, #1877F2, #0d5dd6) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25) !important;
}

.facebook-btn:hover {
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35) !important;
}

.whatsapp-channel-btn {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
}

.whatsapp-channel-btn:hover {
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35) !important;
}

/* ==========================================================================
   PREMIUM FULL-WIDTH LAYOUT & EVENT BANNERS (FOTO FREAKS ALIGNED)
   ========================================================================== */

/* Logo inline SVG & glowing text */
.flex-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem !important;
  text-decoration: none;
}

.logo-text-group {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.35);
}

.logo-title {
  color: #00f2fe;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  color: var(--text-dim) !important;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Home page edge-to-edge overrides */
.home-page-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-main {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-video-section {
  width: 100%;
  max-width: 100%;
  margin: 0 0 3rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Event Banners (Foto Freaks inspired) */
.stream-banner {
  text-align: center;
  padding: 1.15rem 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-v1 {
  background: linear-gradient(135deg, #0288d1 0%, #00b0ff 50%, #26c6da 100%);
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 176, 255, 0.2);
}

.banner-v2 {
  background: linear-gradient(135deg, #1a237e 0%, #3f51b5 50%, #00bcd4 100%);
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(63, 81, 181, 0.25);
}

.stream-banner-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.stream-banner-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0.35rem 0;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.stream-banner-desc {
  font-family: 'Great Vibes', 'Georgia', cursive, serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Full-width responsive edge-to-edge video frame */
.fullwidth-video-frame {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fullwidth-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* Video loading state */
.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  gap: 0.65rem;
  background: #0c0f1d;
}

/* Video 2 locked overlay */
.video2-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(4px);
}

.video2-locked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 5;
  background: rgba(12, 15, 29, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video2-locked .password-box {
  width: 100%;
  max-width: 420px;
  padding: 2.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #ffffff;
}

/* Mobile optimizations for banners */
@media (max-width: 768px) {
  .stream-banner-title {
    font-size: 1.85rem !important;
  }
  .stream-banner-desc {
    font-size: 1.3rem !important;
  }
  .stream-banner {
    padding: 1.5rem 1rem !important;
  }
  .video2-locked .password-box {
    padding: 1.5rem !important;
    max-width: 320px !important;
  }
}

/* ==========================================================================
   DYNAMIC NAVBAR ANNOUNCEMENT TICKER, INFO LINES & HOME CONTACT STYLES
   ========================================================================== */

/* Announcement / Marquee Ticker */
.navbar-announcement-bar {
  background: rgba(12, 15, 29, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.1);
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeAnimation 25s linear infinite;
  width: max-content;
}

.announcement-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00f2fe;
  letter-spacing: 0.12em;
  padding-left: 100%;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

@keyframes marqueeAnimation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Homepage Custom Info Lines */
.homepage-info-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem 1.5rem;
  margin: 1rem auto;
  max-width: 900px;
  text-align: center;
}

.homepage-info-lines .info-line {
  margin: 0;
  line-height: 1.4;
}

.homepage-info-lines .info-line:nth-child(1) {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.homepage-info-lines .info-line:nth-child(2) {
  font-family: 'Great Vibes', cursive;
  font-size: 2.1rem;
  font-weight: 400;
  color: #00f2fe;
  text-shadow: 0 2px 10px rgba(0, 242, 254, 0.3);
}

.homepage-info-lines .info-line:nth-child(3) {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.homepage-info-lines .details-banner {
  background: linear-gradient(135deg, #0288d1 0%, #00b0ff 50%, #26c6da 100%);
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 176, 255, 0.15);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  margin: 1.5rem auto;
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.homepage-info-lines .details-banner.banner-v2 {
  background: linear-gradient(135deg, #1a237e 0%, #3f51b5 50%, #00bcd4 100%);
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(63, 81, 181, 0.2);
}

.homepage-info-lines .details-banner .details-line {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* Home Section Layout override for Contacts block */
.home-contact-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  width: 100%;
}

