@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('./fonts/apple_garamond/AppleGaramond-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

body { font-family: 'Apple Garamond', 'Inter', serif; }

/* Vocago thematic display font */
@font-face {
  font-family: 'Vocago';
  src: url('./fonts/vocago/Vocago.ttf') format('truetype'),
       url('./fonts/vocago/Vocago.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.font-vocago {
  font-family: 'Vocago', 'Apple Garamond', serif;
}

.gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.modern-gradient { background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%); }
.glass-effect { backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); }
.floating-card { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.gradient-text { background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.fade-in { animation: fadeIn 0.8s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Hero background */
/* hero-bg no longer used after switching to video */

/* Subtle text shadow for hero content */
.hero-text-shadow {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Hero overlay */
.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* From Uiverse.io by Pravins01 */
.card {
  position: relative;
  width: 260px;
  height: 340px;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 270px;
  height: 350px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #113F67 0%, #113F67 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #113F67 0%, #113F67 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
}

.card p:not(.heading) {
  font-size: 14px;
}

.card p:last-child {
  color: #ffffff;
  font-weight: 600;
}

.card .heading,
.card p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.8);
}

.card:hover::after {
  filter: blur(30px);
}

.card:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}


