
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body, .card {
  font-family: "Sansation", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

:root {
  --brand-primary: #111111;
  --brand-accent:  #c62828;
  --brand-muted:   #6b6b6b;
  --page-bg:       #ffffff;
  --text-color:    #222222;
  --nav-bg:        var(--brand-primary);
  --nav-text:      #ffffff;
  --btn-bg:        var(--brand-accent);
  --btn-text:      #ffffff;
}

/* industrial */
[data-theme="industrial"] {
  --brand-primary: #2b2f33;
  --brand-accent:  #f9a825;
  --brand-muted:   #9aa0a6;
  --page-bg:       #f4f4f4;
  --text-color:    #1f2326;
  --nav-bg:        var(--brand-primary);
  --nav-text:      #ffffff;
  --btn-bg:        var(--brand-accent);
  --btn-text:      #111;
}





/* Simple utilities using the vars */
/* page background choices: uncomment alternative lines if you want a different theme */
html, body {
  /* background: var(--page-bg); color: var(--text-color); */
  /* background: linear-gradient(135deg, #0b3d91, #3b82f6); */
  background: linear-gradient(135deg, #810709, #e72022, #340304);
  margin: 0;
  padding: 0;
}


/* Buttons */
.btn-theme {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  box-shadow: none;
}
.btn-theme-outline {
  background: transparent;
  color: var(--btn-bg);
  border: 2px solid var(--btn-bg);
}

/* Accent helpers */
.text-accent { color: var(--brand-accent) !important; }
.bg-accent { background: var(--brand-accent); color: var(--btn-text); }

/* Small helpers for contrast checks */
.bg-muted { background: var(--brand-muted); color: var(--text-color); padding: .25rem .5rem; border-radius: .25rem; }

.homepage_bg {     background: rgba(255, 255, 255, 0.905);
  backdrop-filter: blur(10px);
margin-top:10px; 
    text-align: center;
}

.fisherhead {
    font-weight: bold;
    margin-top: 15px;
    text-align: left;
    
}

.homepage_bg img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Logo sizing: never exceed the intrinsic max width to avoid stretching on large viewports */
.homepage_bg .site-logo {
  max-width: 665px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Global link styles: slightly bolder, brighter hover and clearer focus for better contrast
   on the site's red gradient background. These apply sitewide. */
a,
a:link,
a:visited {
  color: #fffdf2; /* very light warm-off-white for a softer 'lighter' appearance */
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.9);
  text-decoration-thickness: 2px;
  font-weight: 700; /* bolder for better legibility */
  text-shadow: 0 1px 0 rgba(0,0,0,0.28);
  transition: color .12s ease, text-decoration-color .12s ease, outline .12s ease;
}

a:hover,
a:active {
  color: #ffe082; /* brighter/lighter amber on hover */
  text-decoration-color: rgba(255,224,130,0.95);
}

a:focus,
a:focus-visible {
  outline: 3px solid rgba(255,224,130,0.22);
  outline-offset: 3px;
  color: #ffe082;
}
/* Breadcrumb tweaks to make a small, subtle breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: var(--brand-muted);
}
.breadcrumb-custom a {
  color: #ffffff;
  text-decoration: underline;
}
.breadcrumb-custom .active {
  color: #ffffff;
}

.card-title {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

  /*.card {
 box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7); 
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #0b3d91, #3b82f6);
  color: #ffffff;
  border: none;
  border-radius: 20px;
}*/
.btn-primary {
  background: linear-gradient(135deg, #0b3d91, #8b5cf6);
  border: none;
  margin-bottom:20px;
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Aspect ratio helpers to reserve layout space and prevent CLS */
.aspect-16-9 {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  display: block;
}

.aspect-1-1 {
  aspect-ratio: 1 / 1;
  width: auto;
  height: auto;
  display: inline-block;
}

/* Ensure card images keep a square aspect and don't stretch */
.card-img-top-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.card-img-top-wrapper picture,
.card-img-top-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}
.card-img-top-wrapper img {
  object-fit: cover;
}

.card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #ffffff;
}

/* Accordion styling to match the site's translucent, industrial look */
.accordion {
  --accordion-bg: rgba(255,255,255,0.03);
}
.accordion .accordion-item {
  background: transparent; /* let the parent background show through */
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.accordion-flush .accordion-item {
  border-left: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
}
.accordion-button {
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  color: #ffffff;
  padding: .85rem 1rem;
  border: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background .25s ease, box-shadow .25s ease, color .2s ease;
}
.accordion-button::after {
  filter: invert(1) opacity(.9);
  transition: transform .25s ease;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(249,168,37,0.12), rgba(255,255,255,0.02));
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  color: #ffffff;
}
.accordion-body {
/*  background: rgba(255,255,255,0.02); */
  background: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1rem;
  color: #ffffff;
}

/* Make embedded review widgets look like cards inside the body */
.accordion-body iframe {
  border: none;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Small responsive tweaks */
@media (max-width: 576px) {
  .accordion-button { font-size: 0.95rem; padding: .7rem .9rem; }
  .accordion-body iframe { height: 320px; }
}


