/* ============================================================
   AVORA DIGITAL IMAGING — main.css
   Global styles, variables, resets, typography, components
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --red:        #D0021B;
  --red-dark:   #A80016;
  --red-light:  #FF1A30;
  --yellow:     #FFD600;
  --yellow-dark:#E6B800;
  --yellow-light:#FFF176;
  --white:      #FFFFFF;
  --off-white:  #FAFAFA;
  --black:      #111111;
  --gray-dark:  #333333;
  --gray-mid:   #666666;
  --gray-light: #EBEBEB;
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.05);
  --shadow-md:  0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 24px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 24px rgba(208,2,27,0.3); /* Soft red glow */
  --radius:     10px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow-dark); }
.bg-red      { background: var(--red); }
.bg-yellow   { background: var(--yellow); }
.bg-white    { background: var(--white); }
.bg-off      { background: radial-gradient(circle at top left, #ffffff 0%, var(--off-white) 100%); }
.mobile-only { display: none !important; }

/* ── Section Headings ───────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 0.95rem;
  color: var(--gray-mid);
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto 50px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
  margin-bottom: 14px;
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--red-light), var(--red-dark));
  margin: 14px auto 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(208,2,27,0.3);
}
.divider.left { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(208,2,27,0.5);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow-dark));
  color: var(--black);
  box-shadow: 0 8px 24px rgba(255,214,0,0.3);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255,214,0,0.5);
}
.btn-outline {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid rgba(255, 214, 0, 0.5); /* subtle yellow border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); /* very soft shadow */
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo .logo-mark {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}
.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--red);
}
.navbar-logo .logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  left: 14%; right: 14%;
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  margin-left: 14px;
}
.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--yellow); }
.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar-links a:hover { color: var(--yellow-light); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: #aaa;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand .logo-name { font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px; color: var(--white); }
.footer-brand .logo-tagline { font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  background: #222;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: #aaa;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: #aaa;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--yellow);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  align-items: flex-start;
}
.footer-contact .icon {
  width: 32px; height: 32px;
  background: #1e1e1e;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--yellow); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  z-index: -1;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 214, 0, 0.5); /* Subtle yellow highlight on hover */
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-red { background: #fff0f2; color: var(--red); }
.badge-yellow { background: #fffde7; color: var(--yellow-dark); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, rgba(208,2,27,0.88) 0%, rgba(153,0,17,0.95) 100%), url('../images/hero_bg.webp') center/cover no-repeat;
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 500px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.anim-fade-up  { animation: fadeUp 0.7s ease both; }
.anim-fade-in  { animation: fadeIn 0.7s ease both; }
.anim-slide-r  { animation: slideRight 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ── Scroll to Top Button ───────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.scroll-to-top:hover {
  background: var(--red-dark);
  transform: translateY(2px);
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--yellow);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 10px;
  border-right: 2px solid rgba(0,0,0,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 4px;
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(208,2,27,0.3);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: rotate(8deg) scale(1.08);
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
  box-shadow: 0 8px 24px rgba(255,214,0,0.4);
}

