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

:root {
  --primary: #0a192f;      /* Deep Navy */
  --accent: #0077ff;       /* Electric Blue */
  --highlight: #f0db4f;    /* Focus Yellow */
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --glass: rgba(255, 255, 255, 0.9);
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
}

header {
  background: var(--glass);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
  font-size: 0.85rem;
  transition: 0.3s;
}

nav a:hover { color: var(--accent); }

.hero {
  /* Replace your background line with this */
  background: linear-gradient(
      135deg, 
      rgba(10, 25, 47, 0.95) 0%,   /* Deep Navy Start */
      rgba(0, 119, 255, 0.4) 50%,  /* Electric Blue Wash (Lighter in middle) */
      rgba(10, 25, 47, 0.95) 100%  /* Deep Navy End */
    ), 
    url('https://images.unsplash.com/photo-1625480859504-e5eca6347c15?q=80&w=2070') center/cover;
  padding: 140px 20px;
  text-align: center;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 { color: white; font-size: 3.5rem; margin: 0; line-height: 1.1; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 700px; margin: 20px auto; }

.container { max-width: 1100px; margin: auto; padding: 80px 20px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  height: auto;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-trial {
  background: var(--highlight);
  color: var(--primary);
}

.btn-trial:hover {
  background: #e6ce2e;
  transform: scale(1.05);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

th { text-align: left; padding: 15px 20px; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; }
td { background: white; padding: 20px; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
td:first-child { border-left: 1px solid #f1f5f9; border-radius: 12px 0 0 12px; }
td:last-child { border-right: 1px solid #f1f5f9; border-radius: 0 12px 12px 0; }

form input, form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-family: inherit;
}

footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 60px 20px;
  font-size: 0.9rem;
}

.qr-placeholder {
  background: #f1f5f9;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* Responsive Video Container */
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
  height: 0;
  border-radius: 12px; /* Matches your card design */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.social-hero {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(0, 119, 255, 0.6)), 
              url('https://images.unsplash.com/photo-1521412644187-c49fa049e84d?q=80&w=2070') center/cover;
  padding: 120px 20px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.event-details-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  display: inline-block;
  max-width: 900px;
}

.gallery-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: zoom-in;
}

.gallery-card:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.qr-box {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  max-width: 200px;
  color: var(--text-muted);
  font-weight: 600;
}

.icon-badge {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}