/* GLOBAL */

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
}

/* ============================================================
   NEW FORGED-AMERICANA GOLDEN-HOUR HERO SECTION
   ============================================================ */

.vf-hero {
    position: relative;
    padding: 80px 20px 90px;
    text-align: center;
    color: #f9fafb;
    overflow: visible;
    background:
        radial-gradient(circle at 12% 8%, rgba(255,210,120,0.75) 0%, rgba(255,185,60,0.55) 18%, rgba(251,191,36,0.35) 38%, transparent 70%),
        radial-gradient(circle at 10% 10%, rgba(255,180,80,0.25), transparent 65%),
        radial-gradient(circle at top left, rgba(251,191,36,0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(248,113,113,0.25), transparent 55%),
        linear-gradient(135deg, #0b3b75 0%, #1e3a8a 45%, #111827 100%);
}

/* Glow animation */
@keyframes forgeGlow {
    0% {
        filter:
            drop-shadow(0 6px 14px rgba(0,0,0,0.75))
            drop-shadow(0 0 16px rgba(249,115,22,0.55));
    }
    50% {
        filter:
            drop-shadow(0 10px 24px rgba(0,0,0,0.95))
            drop-shadow(0 0 34px rgba(249,115,22,0.95));
    }
    100% {
        filter:
            drop-shadow(0 6px 14px rgba(0,0,0,0.75))
            drop-shadow(0 0 16px rgba(249,115,22,0.55));
    }
}

/* Logo */
.vf-hero-logo {
    position: relative;
    width: 300px;
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto 26px;
    animation: forgeGlow 2s ease-in-out infinite;
    z-index: 5;
}

/* FLAG STRIPES LAYER */

.vf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/stripes.jpg") center/cover no-repeat;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

/* DARK OVERLAY */
.vf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

/* CONTENT ABOVE EVERYTHING */
.vf-hero-inner {
    position: relative;
    z-index: 3;
}

/* Text */
.vf-hero-title {
    font-size: 2.4rem;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.vf-hero-subtitle {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Buttons */
.vf-hero-actions {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vf-btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.98rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

/* IRON‑COPPER EMBER BUTTON */
.vf-btn-frutiger-red {
  cursor: pointer;
  position: relative;
  padding: 2px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(#4a0f02, #7a1802);
  box-shadow: 0px 4px 6px #0005;
  transition: 0.25s all;
  text-decoration: none;
  display: inline-block;
}

.vf-btn-frutiger-red:hover {
  background: linear-gradient(#5c1203, #9c2608);
  box-shadow: 0px 7px 14px #0008;
  transform: translateY(-2px);
}

.vf-btn-frutiger-red .inner {
  position: relative;
  inset: 0;
  padding: 0.9em 1.4em;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 115%, rgba(255,120,60,0.12) 5%, rgba(255,120,60,0) 45%),
    linear-gradient(#5c1203, #7a1802);
  overflow: hidden;
  transition: inherit;
}

.vf-btn-frutiger-red .inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 2px 8px -2px #0003;
  transition: inherit;
}

.vf-btn-frutiger-red:hover .inner::after {
  box-shadow: inset 0px 2px 10px -2px #0005;
}

.vf-btn-frutiger-red .text {
  position: relative;
  z-index: 1;
  color: #f3ece7;
  font-weight: 600;
  font-size: 1rem;
}

/* DARK STEEL BUTTON */
.vf-btn-frutiger-dark {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(25%);
  cursor: pointer;
  position: relative;
  padding: 2px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(#1e293b, #0f172a);
  box-shadow: 0px 4px 6px #0008;
  transition: 0.25s all;
  text-decoration: none;
  display: inline-block;
}

.vf-btn-frutiger-dark:hover {
  background: linear-gradient(#162032, #0b1220);
  box-shadow: 0px 7px 14px #000a;
  transform: translateY(-2px);
}

.vf-btn-frutiger-dark .inner {
  position: relative;
  inset: 0;
  padding: 0.9em 1.4em;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 115%, rgba(160,180,255,0.15) 5%, rgba(160,180,255,0) 45%),
    linear-gradient(#0f1a2a, #1e293b);
  overflow: hidden;
  transition: inherit;
}

.vf-btn-frutiger-dark .inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 2px 8px -2px #0004;
  transition: inherit;
}

.vf-btn-frutiger-dark:hover .inner::after {
  box-shadow: inset 0px 2px 10px -2px #0006;
}

.vf-btn-frutiger-dark .text {
  position: relative;
  z-index: 1;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .vf-hero {
        padding: 60px 16px 70px;
    }

    .vf-hero-title {
        font-size: 1.9rem;
    }

    .vf-hero-subtitle {
        font-size: 1rem;
    }

    .vf-hero-logo {
        width: 220px;
        margin-bottom: 20px;
    }
}

/* EXISTING SECTIONS */

.section {
    padding: 60px 20px;
    text-align: center;
}

.section.light {
    padding-top: 80px;
    background: #ffffff;
}

.section.dark {
    background: #1f2937;
    color: white;
}

.section-subtext {
    max-width: 700px;
    margin: 10px auto 40px;
    opacity: 0.9;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    text-align: left;
}

/* SUITE GRID */
.suite-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.suite-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    text-decoration: none;
    color: white;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.2);
}

.suite-card:hover {
    background: rgba(255,255,255,0.2);
}

/* WHY LIST */
.why-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

.subfooter {
    opacity: 0.7;
    margin-top: 4px;
}

/* ============================================================
   GLOBAL MENU + WELCOME
   ============================================================ */

.vf-menu-icon {
    /*position: absolute;
    top: 0px;
    right: 0px; /* leaves room for Sign in / Welcome */
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;
    
    margin-top: 0px;
    flex-shrink: 0;	
}

.vf-menu-icon .bar {
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 3px;
    flex: none;
}

/* Top-right auth area (Sign in / Welcome) */
.vf-auth-area {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 9999;
    display: flex;
    width: 100%;
    padding: 10px 20px;
    align-items: center;
    box-sizing: border-box;
}
.vf-auth-spacer {
    margin-left: auto;   /* ⭐ MAGIC LINE */
}
.vf-auth-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vf-welcome-text {
    white-space: nowrap;
}

/* Sign in link */
.vf-signin-link {
    color: #f9fafb;
    text-decoration: none;
    font-weight: 600;
}

.vf-signin-link:hover {
    text-decoration: underline;
}

/* Welcome text clickable */
.vf-welcome-text {
    color: #f9fafb;
    font-weight: 600;
    cursor: pointer;
}

/* Account dropdown (VetForge style) */
.vf-account-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 0;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: none;
    z-index: 10000;
}

.vf-account-header {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vf-account-name {
    font-weight: 600;
    color: #f9fafb;
    font-size: 0.95rem;
}

.vf-account-email {
    font-size: 0.85rem;
    color: #d1d5db;
}

.vf-account-link {
    display: block;
    padding: 10px 16px;
    color: #f9fafb;
    text-decoration: none;
    font-size: 0.95rem;
}

.vf-account-link:hover {
    background: rgba(255,255,255,0.08);
}

/* Existing menu dropdown (if you still want it) */
.vf-menu-dropdown {
    position: absolute;
    top: 60px;
    right: 120px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 10px 0;
    width: 180px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 9999;
}

.vf-menu-dropdown a {
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.vf-menu-dropdown a:hover {
    background: rgba(255,255,255,0.1);
}
/* Fix branch dropdown */
#branch {
    background-color: #f0f0f0;   /* light gray */
    color: #000;                 /* black text */
}

/* Fix the options inside the dropdown */
#branch option {
    background-color: #f0f0f0;
    color: #000;
}
/* Header container */
.header-bar {
    display: flex;
    justify-content: flex-end;   /* push everything to the right */
    align-items: center;         /* vertical centering */
    gap: 12px;                   /* space between welcome text and menu */
    padding: 10px 20px;
    height: 60px;
    position: relative;
}

/* Welcome text */
#welcome-text {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;         /* prevents wrapping */
}

/* Menu icon */
#menu-icon {
    height: 32px;
    width: 32px;
    cursor: pointer;
}
#vfAccountBranchLogo {
    width: 32px;      /* or 64px */
    height: 32px;     /* or 64px */
    object-fit: contain;
}
.vf-account-logo {
    width: 40px;        /* or 80px */
    height: 40px;       /* or 80px */
    object-fit: contain;
    display: block;
}
