/*=========================================
BAJAY JAY
Premium Luxury Website
Author: TIMBI Omni Technologies
==========================================*/

/*========================
GOOGLE VARIABLES
=========================*/

:root {
  --primary: #c4833f;
  --secondary: #120f0d;
  --white: #ffffff;
  --light: #f5efe8;
  --gray: #a99888;
  --border: rgba(212, 175, 55, 0.24);
  --gold: #d9b37b;
  --bg: #120d09;
  --panel: #1b1513;
  --ink: #f5efe8;
  --muted: #d8c9b8;
  --transition: 0.4s ease;
}

/*========================
RESET
=========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 128, 60, 0.26), transparent 20%),
    radial-gradient(circle at bottom right, rgba(217, 179, 123, 0.10), transparent 24%),
    linear-gradient(180deg, #0b0908 0%, #120d0b 25%, #0f0b09 100%);
  color: var(--ink);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/*========================
TOP BAR
=========================*/

.top-bar {
  background: #171412;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}

.left-top {
  display: flex;
  gap: 30px;
}

.left-top a {
  color: white;
  transition: 0.3s;
}

.left-top a:hover {
  color: var(--primary);
}

.left-top i {
  color: var(--primary);
  margin-right: 8px;
}

.right-top {
  color: white;
}

.right-top i {
  color: var(--primary);
  margin-right: 8px;
}

/*========================
HEADER
=========================*/

header {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  backdrop-filter: blur(15px);
  background: rgba(17, 12, 10, 0.82);
  border-bottom: 1px solid rgba(217, 179, 123, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

/*========================
LOGO
=========================*/

.logo img {
  width: 140px;
}

/*========================
NAVIGATION
=========================*/

nav ul {
  display: flex;
  gap: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: #f8efe7;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.4s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: var(--primary);
}

/*========================
BUTTON
=========================*/

.quote-btn {
  background: linear-gradient(135deg, var(--primary), #8a6737);
  color: white;
  padding: 15px 34px;
  border-radius: 999px;
  transition: 0.4s;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(183, 132, 67, 0.2);
}

.quote-btn:hover {
  background: linear-gradient(135deg, #8a6737, var(--primary));
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  z-index: 1200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(18, 140, 126, 0.35);
}

.chatbot-float {
  position: fixed;
  right: 92px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.35);
  z-index: 1200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: glow-pulse 2.4s infinite;
}

.chatbot-float::after {
  content: "Ask AI";
  position: absolute;
  right: 74px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: 0.25s ease;
  pointer-events: none;
}

.chatbot-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.chatbot-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(212, 175, 55, 0.45);
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/*========================
MOBILE MENU
=========================*/

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #111;
  position: relative;
  z-index: 1100;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 900;
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  transition: right 0.35s ease, opacity 0.35s ease;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 86vw);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    padding: 100px 24px 24px;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.show-mobile {
    right: 0;
    opacity: 1;
  }

  .nav-links.show-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .nav-links ul li a {
    color: #fff;
    font-size: 1rem;
  }

  .nav-links ul li a::after {
    background: var(--primary);
  }
}

/*========================
HERO
=========================*/

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #100d0b 0%, #1d1713 38%, #33281f 100%);
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  filter: saturate(0.8) contrast(1.08) brightness(0.58);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 8, 7, 0.88) 0%, rgba(15, 15, 15, 0.56) 38%, rgba(15, 15, 15, 0.22) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(217, 179, 123, 0.12), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 700px;
  margin-left: 8%;
}

.hero-content span {
  color: var(--gold);
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.7rem, 6vw, 6.8rem);
  line-height: 0.88;
  color: #f8f1e8;
  margin-top: 20px;
  margin-bottom: 25px;
  letter-spacing: -0.05em;
  text-shadow: 0 26px 56px rgba(0,0,0,0.35);
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  line-height: 1.1;
  color: #f7efe7;
  margin-top: 20px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: #f0f0f0;
  line-height: 1.8;
  width: 600px;
  font-size: 18px;
}

.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/*========================
HERO STATS
=========================*/

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  color: #e6e6e6;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/*========================
AI HIGHLIGHT BANNER
=========================*/

.ai-highlight {
  background: linear-gradient(120deg, #111111, #2a1c10 60%, #3b2510);
  padding: 55px 0;
}

.ai-highlight-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ai-highlight-icon {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, var(--primary) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #111;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12);
}

.ai-highlight-copy {
  flex: 1 1 380px;
}

.ai-highlight-copy .eyebrow {
  color: var(--gold);
}

.ai-highlight-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: #fff;
  margin: 6px 0 10px;
}

.ai-highlight-copy p {
  color: #e6e6e6;
  line-height: 1.7;
}

.ai-highlight-btn {
  flex: 0 0 auto;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 50px;
  transition: 0.3s;
  white-space: nowrap;
}

.ai-highlight-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

/*========================
BRAND ETHOS BANNER
=========================*/

.ethos-section {
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(197, 107, 43, 0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ethos-inner {
  text-align: center;
  max-width: 780px;
}

.ethos-inner h2 {
  margin: 10px auto 18px;
}

.ethos-inner p {
  margin: 0 auto;
}

.hero-badge {
  width: 240px;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #c56b2b 0%, #8f4d15 60%, #5a2d0c 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.35);
}

.section p {
  color: #d8c8ba;
  line-height: 1.8;
  font-size: 1rem;
}

/*========================
BUTTONS
=========================*/

.hero-buttons {
  margin-top: 45px;
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: linear-gradient(135deg, #d9b37b 0%, #c4833f 38%, #8a5e2a 100%);
  color: #130f0d;
  padding: 18px 40px;
  border-radius: 999px;
  transition: 0.4s;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(196, 131, 63, 0.28);
  letter-spacing: 0.02em;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(179, 112, 47, 0.32);
  background: linear-gradient(135deg, #8a5e2a, var(--primary));
}

.secondary-btn {
  border: 1.5px solid rgba(255,255,255,0.75);
  color: white;
  padding: 18px 40px;
  border-radius: 999px;
  transition: 0.4s;
  backdrop-filter: blur(2px);
  background: rgba(255,255,255,0.02);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,1);
  color: #fff;
}

/*========================
SCROLL ICON
=========================*/

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 12px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/*========================
SECTION
=========================*/

section {
  padding: 120px 0;
}

.alt-section {
  background: rgba(17, 12, 10, 0.58);
  border-top: 1px solid rgba(217, 179, 123, 0.18);
  border-bottom: 1px solid rgba(217, 179, 123, 0.18);
}

main section:first-of-type {
  padding-top: 110px;
}

.section .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-grid,
.contact-grid,
.profile-grid,
.corporate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: center;
}

.profile-copy,
.corporate-copy {
  padding-right: 1rem;
}

.about-card,
.profile-card,
.contact-card,
.card,
.portfolio-item {
  background: linear-gradient(180deg, rgba(27, 22, 18, 0.96), rgba(16, 12, 10, 0.99));
  border: 1px solid rgba(217, 179, 123, 0.22);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover,
.profile-card:hover,
.contact-card:hover,
.card:hover,
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(23, 19, 17, 0.12);
}

.about-card:hover,
.profile-card:hover,
.contact-card:hover,
.card:hover,
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.about-card img,
.profile-card img,
.card img,
.portfolio-item img,
.mini-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: 1rem;
  padding-left: 1rem;
  color: #555;
}

.feature-list li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 0.8rem;
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

.about-card ul {
  margin-top: 0.8rem;
  padding-left: 1rem;
  color: #d8c8ba;
}

.cards,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-banner {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(179, 112, 47, 0.12), rgba(255,255,255,0.95));
  border: 1px solid rgba(179, 112, 47, 0.18);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 28px rgba(23, 19, 17, 0.05);
}

.corporate-image-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.corporate-image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.3rem;
}

.forms-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #111;
  background: white;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #111;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #1f6f3b;
}

.secondary-btn.dark-outline {
  border: 2px solid #111;
  color: #111;
}

.secondary-btn.dark-outline:hover {
  background: #111;
  color: white;
}

.info-banner h3 {
  margin-bottom: 0.45rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.mini-gallery img {
  height: 180px;
}

.card h3,
.portfolio-item h3,
.contact-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.card h3 i {
  color: var(--primary);
  margin-right: 0.4rem;
}

.contact-card p {
  margin: 0.6rem 0;
  color: #555;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2rem;
  color: #d8c8ba;
  background: rgba(14, 11, 9, 0.8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.credit-line {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
  margin-top: 1.5rem;
}

img[data-lightbox] {
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1.25rem;
}

.image-modal-card {
  background: #fff;
  max-width: 920px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.image-modal-card img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.image-modal-caption {
  padding: 1rem 1.1rem 1.2rem;
  color: #111;
  font-size: 0.98rem;
}

.image-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 1.2rem;
  cursor: pointer;
}

.page-hero {
  padding: 180px 0 90px;
  background: linear-gradient(135deg, rgba(197, 128, 60, 0.20), rgba(17,17,17,0.10) 55%, rgba(255,255,255,0.04));
  border-bottom: 1px solid rgba(217, 179, 123, 0.12);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.chatbot-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

#chat-output {
  min-height: 220px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.chat-message {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  max-width: 85%;
}

.chat-message.user {
  background: #111;
  color: white;
  align-self: flex-end;
}

.chat-message.bot {
  background: #e8c79f;
  color: #111;
  align-self: flex-start;
}

#chat-form {
  display: flex;
  gap: 0.7rem;
}

#chat-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

#chat-form button {
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  cursor: pointer;
}

/*========================
RESPONSIVE
=========================*/

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    width: 90%;
    margin: auto;
  }

  .hero-content h1,
  .section h2 {
    font-size: 60px;
  }

  .hero-content p,
  .section p {
    width: 100%;
  }

  .hero-stats {
    gap: 22px;
  }

  .ai-highlight-inner {
    text-align: center;
    justify-content: center;
  }

  .ai-highlight-copy {
    text-align: center;
  }

  .left-top {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .about-grid,
  .contact-grid,
  .profile-grid,
  .corporate-grid,
  .cards,
  .portfolio-grid,
  .mini-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .section h2 {
    font-size: 45px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }

  .chatbot-float {
    width: 56px;
    height: 56px;
    font-size: 22px;
    right: 80px;
    bottom: 16px;
  }

  .gallery-grid,
  .testimonials-grid,
  #chat-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .quote-btn {
    display: none;
  }

  header {
    top: 45px;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .section h2 {
    font-size: 36px;
  }

  .hero-content span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
