:root {
  --bg-primary-rgb: 9, 9, 11;
  --bg-primary: rgb(var(--bg-primary-rgb));
  /* zinc-950 */
  --bg-secondary-rgb: 24, 24, 27;
  --bg-secondary: rgb(var(--bg-secondary-rgb));
  /* zinc-900 */
  --bg-tertiary-rgb: 39, 39, 42;
  --bg-tertiary: rgb(var(--bg-tertiary-rgb));
  /* zinc-800 */

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  /* zinc-400 */
  --text-muted: #d4d4d8;
  /* zinc-300 */
  --text-dim: #71717a;
  /* zinc-500 */
  --accent: #f59e0b;
  /* amber-500 */
  --border-color: #27272a;
  /* zinc-800 */
}

.text-white-always {
  color: #ffffff !important;
}

/* Light mode enforcement (override dark utilities) */
:root {
  --bg-primary-rgb: 248, 250, 252;
  --bg-primary: rgb(var(--bg-primary-rgb));
  --bg-secondary-rgb: 226, 232, 240;
  --bg-secondary: rgb(var(--bg-secondary-rgb));
  --bg-tertiary-rgb: 203, 213, 225;
  --bg-tertiary: rgb(var(--bg-tertiary-rgb));

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --accent: #f59e0b;
  --border-color: #e2e8f0;
}

/* Force light background and dark text globally */
html,
body {
  background: rgb(var(--bg-primary-rgb)) !important;
  color: var(--text-primary) !important;
}

/* Override dark Tailwind utility classes */
.bg-zinc-950,
.bg-zinc-950\/80,
.bg-zinc-950\/95,
.bg-zinc-900,
.bg-zinc-900\/50,
.bg-zinc-900\/95,
.bg-zinc-800,
.bg-zinc-800\/50,
.bg-zinc-700 {
  background-color: rgb(var(--bg-primary-rgb)) !important;
}

.text-white,
.text-zinc-50 {
  color: var(--text-primary) !important;
}

.text-zinc-300,
.text-zinc-400,
.text-zinc-500 {
  color: var(--text-secondary) !important;
}

.border-zinc-900,
.border-zinc-800,
.border-zinc-700 {
  border-color: var(--border-color) !important;
}

/* Ensure any dark overlays become light-ish */
.bg-black\/50,
.bg-black\/70,
.bg-black\/80,
.bg-black\/90 {
  background-color: rgba(248, 250, 252, 0.75) !important;
}

/* Global Branding Style */
.brand-logo {
  font-family: "Inter", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  text-transform: uppercase !important;
  color: var(--text-primary);
  transition: color 0.3s ease;
  white-space: normal !important;
  /* Allow wrapping as per student request */
  display: inline-block;
  line-height: 1.1;
  max-width: 100%;
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1rem !important;
    /* Slightly smaller for mobile but fully visible */
    white-space: normal !important;
  }
}

/* Global Overflow Fixes */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

/* Navbar Fix */
.navbar {
  width: 100%;
  max-width: 100%;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

/* Container Fix */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* Image Overflow Fix */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Button Fix */
.hero-btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 14px;
  border-radius: 40px;
  max-width: 90%;
  text-align: center;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn:hover {
  letter-spacing: 2px;
  box-shadow: 0 10px 30px -10px var(--accent);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Mobile Adjustment */
@media (max-width: 768px) {

  .hero,
  section[id="home"],
  header.relative {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    padding: 0 10px;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .hero-btn {
    width: auto !important;
    display: inline-block !important;
    margin: 0 !important;
  }
}

/* Mobile Typography Cleanup */
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}

/* Navbar Overflow Prevention & Positioning */
nav {
  width: 100% !important;
  z-index: 9999 !important;
}

nav>div {
  width: 100% !important;
  max-width: 100% !important;
}

/* Blog Card Equal Height + Footer Button Alignment */
#blog-posts-container article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#blog-posts-container article>a:last-of-type {
  margin-top: auto;
}

/* Global Spacing Reduction for Compact Layout */
section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* Hero sections clearance */
section:first-of-type,
section.hero,
section[class*="hero"] {
  padding-top: 7rem !important;
  padding-bottom: 3rem !important;
}

/* Mobile Menu Solid State */
#mobile-menu {
  background-color: #09090b;
  /* Solid Zinc-950 */
}

/* Light theme enforced - dark mode removed */



/* Dashboard Global Styles */
.dashboard-sidebar {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 60;
    transform: translateX(-100%);
  }

  .dashboard-sidebar.active {
    transform: translateX(0);
  }
}

.text-zinc-300,
.text-gray-300 {
  color: var(--text-muted) !important;
}

.text-zinc-400,
.text-gray-400 {
  color: var(--text-secondary) !important;
}

.text-zinc-500,
.text-gray-500 {
  color: var(--text-dim) !important;
}

.border-zinc-800 {
  border-color: var(--border-color) !important;
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width:768px) {
  .bg-amber-500 {
    padding-top: 0.8rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
  overflow: visible !important;
}

/* Consistent White + Orange Section Headings */
.section-heading-white {
  color: var(--text-primary);
}

.section-heading-orange,
.hero-accent {
  color: var(--accent);
  font-style: italic;
  display: inline-block;
  padding-right: 0.15em;
  background: linear-gradient(to right,
      #fde68a,
      #f59e0b,
      #b45309,
      #f59e0b,
      #fde68a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

.shadow-orange {
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero h1 {
  transition: transform 0.5s ease;
}

.hero h1:hover {
  transform: translateY(-5px);
}

.font-serif {
  font-family: "Playfair Display", serif;
}

/* Custom Select styling for Booking Page (Point 13) */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}


/* Portfolio Content Symmetry (Point 6) */
.portfolio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@keyframes pulse-slow {

  0%,
  100% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.animate-pulse-slow {
  animation: pulse-slow 20s infinite ease-in-out;
}

.animate-slow-zoom {
  animation: slow-zoom 30s infinite alternate linear;
}

.page-transition {
  transition: opacity 0.5s ease-in-out;
}

.hidden-page {
  display: none !important;
  opacity: 0;
}

.masonry {
  column-count: 1;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .masonry {
    column-count: 2;
  }
}

/* Custom Switch Button Hover Animation */
.switch-btn {
  width: 48px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch-btn:hover {
  width: 140px;
}

.switch-text {
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

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

/* Glassmorphism Utilities */
.glass {
  background: rgba(24, 24, 27, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}


/* Scroll Reveal Animations */
/* Scroll Reveal Animations - Premium Feel */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Delays for Grid Items */
.reveal.active.delay-100,
.reveal-left.active.delay-100,
.reveal-right.active.delay-100 {
  transition-delay: 0.1s;
}

.reveal.active.delay-200,
.reveal-left.active.delay-200,
.reveal-right.active.delay-200 {
  transition-delay: 0.2s;
}

.reveal.active.delay-300,
.reveal-left.active.delay-300,
.reveal-right.active.delay-300 {
  transition-delay: 0.3s;
}

.reveal.active.delay-400,
.reveal-left.active.delay-400,
.reveal-right.active.delay-400 {
  transition-delay: 0.4s;
}

.reveal.active.delay-500,
.reveal-left.active.delay-500,
.reveal-right.active.delay-500 {
  transition-delay: 0.5s;
}

/* Premium Hover Effects */
.portfolio-item-hover {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item-hover:hover {
  transform: scale(1.02);
}

.img-zoom-hover img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Grainy Overlay Effect */
.grainy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Perspective Tilt (Simple CSS way) */
.tilt-card {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
}

/* Footer Enhancements (Point 17) */
footer h4 {
  font-weight: 900 !important;
  font-size: 0.875rem !important;
  /* text-sm but felt bolder */
  letter-spacing: 0.15em !important;
  color: var(--text-primary) !important;
  opacity: 1 !important;
  margin-bottom: 2rem !important;
}

footer ul li a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

/* Profile Dropdown Fixes */
#profileDropdown {
  min-width: 180px !important;
  max-width: 220px !important;
  z-index: 10000;
  border-radius: 12px !important;
}

/* Light Mode Profile Dropdown Overrides */
body.bg-white #profileDropdown {
  background-color: #ffffff !important;
  border-color: #e5e7eb !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

body.bg-white #profileDropdown .absolute.-top-2.right-4 {
  background-color: #ffffff !important;
  border-color: #e5e7eb !important;
}

body.bg-white #profileDropdown .border-white\/5 {
  border-color: #e5e7eb !important;
}

body.bg-white #profileDropdown p {
  color: #6b7280 !important;
  /* text-gray-500 */
}

body.bg-white #profileDropdown a {
  color: #1f2937 !important;
  /* text-gray-800 for dark text */
}

body.bg-white #profileDropdown a:hover {
  background-color: #fffbeb !important;
  /* bg-amber-50 */
  color: #d97706 !important;
  /* text-amber-600 */
}

body.bg-white #profileDropdown a .bg-zinc-900 {
  background-color: #f3f4f6 !important;
  /* bg-gray-100 */
  border-color: #e5e7eb !important;
  /* border-gray-200 */
}

body.bg-white #profileDropdown a:hover .bg-zinc-900 {
  background-color: #fef3c7 !important;
  /* bg-amber-100 */
  border-color: #fcd34d !important;
  /* border-amber-300 */
}

body.bg-white #profileDropdown a i.text-zinc-400 {
  color: #4b5563 !important;
  /* text-gray-600 for icons clearly visible */
}

body.bg-white #profileDropdown a:hover i.text-zinc-400 {
  color: #d97706 !important;
  /* highlight icon on hover */
}

body.bg-white #profileDropdown a i.text-amber-500 {
  color: #d97706 !important;
  /* keeping amber icon visible */
}

#profileDropdown a {
  padding: 8px 12px !important;
  font-size: 12px !important;
  border-radius: 8px !important;
}

#profileDropdown i {
  width: 14px !important;
  height: 14px !important;
}

#profileDropdown .px-4.py-3.border-b {
  padding: 10px 12px !important;
}

@media (max-width: 640px) {
  #profileDropdown {
    right: -5px !important;
    width: 200px !important;
    min-width: 0 !important;
  }
}

/* Mobile Menu Compact Buttons */
#mobile-menu .p-6.space-y-4 {
  padding: 1.25rem !important;
}

#mobile-menu button[onclick*="booking.html"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 11px !important;
  border-radius: 10px !important;
}

#mobile-menu .grid-cols-2 button {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  font-size: 10px !important;
  border-radius: 10px !important;
}

#mobile-menu .grid-cols-2 i {
  width: 14px !important;
  height: 14px !important;
}

#profileDropdown.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

/* Lightbox Fade Animation */
#lightbox {
  transition: opacity 0.4s ease-in-out;
  backdrop-filter: blur(20px);
}

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

#lightbox img {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 375px) {
  h3 {
    font-size: 1.1rem !important;
  }

  p,
  li {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .hero-btn {
    font-size: 10px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    max-width: 260px !important;
    justify-content: center !important;
  }

  /* Navbar compact on tiny screens */
  .navbar {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .navbar>div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .navbar .flex-shrink-0 {
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .navbar .flex {
    gap: 0.5rem !important;
  }

  .brand-logo {
    max-width: none !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 0.9rem !important;
    /* One line as per user request */
    line-height: 1.1 !important;
  }

  /* Footer compact */
  footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  footer .grid {
    gap: 1.5rem !important;
  }

  /* Ensure footer brand text wraps and doesn’t force overflow */
  footer .max-w-xs {
    max-width: 100% !important;
  }

  /* Footer CTA button responsiveness */
  .cta-btn {
    width: min(100%, 260px) !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.8rem !important;
  }

  /* Grid always single column */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact info stack */
  .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  /* Blog filter buttons wrap */
  .flex-wrap {
    gap: 0.375rem !important;
  }

  .flex-wrap button {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.625rem !important;
  }
}

/* ---- Small phones: 376px–480px ---- */
@media (min-width: 376px) and (max-width: 480px) {

  .hero h1,
  h1 {
    font-size: 1.75rem !important;
    line-height: 1.15 !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  p {
    font-size: 0.875rem !important;
  }

  .hero-btn {
    font-size: 11px !important;
    padding: 12px 20px !important;
  }

  .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Normal phones (portrait): 481px–640px ---- */
@media (min-width: 481px) and (max-width: 640px) {

  .hero h1,
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.625rem !important;
  }

  p {
    font-size: 0.9375rem !important;
  }

  /* 2-col grids go to single */
  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  /* Blog cards single col */
  .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Large phones / Small tablets: 641px–768px ---- */
@media (min-width: 641px) and (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem !important;
  }

  /* Blog grid 2 columns */
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Contact layout stacks */
  .lg\:flex-row {
    flex-direction: column !important;
  }

  .lg\:w-1\/2 {
    width: 100% !important;
  }

  /* Featured work grid */
  .md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Tablets: 769px–1024px ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem !important;
  }

  /* Blog 2-col grid */
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Contact layout 2-col */
  .lg\:flex-row {
    flex-direction: column !important;
  }

  .lg\:w-1\/2 {
    width: 100% !important;
  }

  /* Service cards adjust */
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer 2 cols on tablet */
  footer .lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---- Tablet / Small Desktop Bridge: 1024px–1150px ---- */
@media (min-width: 1024px) and (max-width: 1150px) {

  /* Reduce navbar spacing slightly to prevent overflow at 1024px */
  nav.navbar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Condense spacing between navigation items */
  .navbar .lg\:flex {
    gap: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .navbar .nav-link {
    padding: 0.4rem 0.5rem !important;
    font-size: 9px !important;
  }

  .navbar a.bg-amber-500 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 10px !important;
  }
}

/* ---- Small desktops: 1025px–1280px ---- */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero h1 {
    font-size: 3.5rem !important;
  }

  .max-w-7xl {
    max-width: 1100px !important;
  }
}

/* ---- Full desktop: 1281px+ ---- */
@media (min-width: 1281px) {
  .hero h1 {
    font-size: 4.5rem !important;
  }
}

/* ---- Global touch-friendly targets for mobile ---- */
@media (max-width: 768px) {

  /* Ensure tap targets are at least 44px */
  a,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Prevent horizontal overflow from any element */
  main,
  section,
  header,
  footer,
  article {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* Stack flex layouts on mobile */
  .flex-col.sm\:flex-row {
    flex-direction: column !important;
  }

  /* Featured work images full width */
  .aspect-\[4\/5\] {
    aspect-ratio: 16/10 !important;
  }

  /* Contact map smaller */
  .h-80 {
    height: 200px !important;
  }

  /* Blog "Top Stories" cards stack */
  .md\:flex-row {
    flex-direction: column !important;
  }

  .md\:w-48 {
    width: 100% !important;
  }

  /* Form padding adjustments */
  .p-8,
  .md\:p-12 {
    padding: 1.25rem !important;
  }

  /* Reduce section padding */
  .py-24 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Hero padding adjustments */
  .pt-32 {
    padding-top: 6rem !important;
  }

  .pt-40 {
    padding-top: 7rem !important;
  }

  /* Blog filter buttons */
  .flex-wrap button {
    font-size: 0.7rem !important;
    padding: 0.375rem 0.75rem !important;
  }

  /* Hide the mobile menu “Book” button on phones/tablets */
  #mobile-menu>div>div>a[href="booking.html"] {
    display: none !important;
  }

  /* Gallery grid single col */
  .lg\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  /* Footer always single col on mobile */
  footer .grid {
    grid-template-columns: 1fr !important;
  }

  /* Featured work article spacing */
  .mb-32 {
    margin-bottom: 3rem !important;
  }
}

/* ---- Tablet landscape specific ---- */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 60vh !important;
    padding-top: 8rem !important;
  }

  .hero h1 {
    font-size: 2.75rem !important;
  }
}

/* ---- Print styles ---- */
@media print {

  .navbar,
  #mobile-menu,
  .grainy-overlay,
  footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  * {
    box-shadow: none !important;
  }
}