/* CorePicks.com Clone Styles */
:root {
  --main-bg: #fbf9f4;
  --deep-maroon: #330f0e;
  --primary-red: #831413;
  --accent-gold: #edb716;
  --muted-grey: #c9c9c9;
  --muted-brown: #cea4a2;
  --highlight-green: #529782;
  --info-grey: #cdc1af;
  --font-montserrat: 'Montserrat', Arial, sans-serif;
  --font-poppins: 'Poppins', Arial, sans-serif;
}

/* Blurred Background Image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('assets/mainbg.jpg') center center/cover no-repeat;
  filter: blur(6px) brightness(0.85);
  opacity: 0.62;
  pointer-events: none;
}

body {
  background: var(--main-bg); /* fallback for no image */
  color: var(--deep-maroon);
  font-family: var(--font-montserrat);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Top Banner Alert */
.top-banner {
  background: var(--deep-maroon);
  color: #fff;
  text-align: center;
  padding: 0.7em 1em;
  font-size: 1em;
  font-family: var(--font-poppins);
  letter-spacing: 0.01em;
}
.top-banner a {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--muted-grey);
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 2em;
}
.nav-links li {
  display: inline-block;
}
.nav-links a {
  color: var(--deep-maroon);
  font-family: var(--font-poppins);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05em;
  letter-spacing: 0.01em;
  padding: 1.1em 0.6em;
  display: inline-block;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-red);
}

/* Main Hero Section */
/* Reduce .main-hero height and padding by 10% */
.main-hero {
  background: linear-gradient(120deg, rgba(51,15,14,0.80) 60%, rgba(139,20,19,0.73) 95%), url('assets/header-bg.jpg') center top/cover no-repeat;
  padding: 3.15em 0 1.25em 0;
  text-align: center;
  border-radius: 0 0 38px 38px;
  position: relative;
  box-shadow: 0 13px 24px 0 rgba(51,15,14,0.05);
  min-height: 324px;
}
.main-hero h1 {
  color: #fff;
  text-shadow: 0 1px 14px #330f0e99, 0 0px 2px #831413;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 2.5em;
  margin: 0;
  line-height: 1.2;
}
.hero-desc {
  font-size: 1.21em;
  color: #ede0c6;
  margin: 1em auto 0 auto;
  max-width: 680px;
  font-family: var(--font-poppins);
  line-height: 1.5;
}

/* Double size for image inside .main-hero, keep responsive */
.main-hero img {
  width: 320px;
  max-width: 85vw;
  height: auto;
  display: block;
  margin: 2.1em auto 1.3em auto;
}

/* Info Row Section */
.info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  padding: 1.5em 0 2em 0;
  background: #f2f2f2;
  border-radius: 12px;
  width: 85%;
  margin: 0 auto 2em auto;
  box-shadow: 0 2px 14px 0px rgba(0,0,0,0.03);
}
.info-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 1.07em;
  color: var(--highlight-green);
  letter-spacing: 0.01em;
}
.info-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Bookmaker Cards Section */
.top-bookmakers {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 95%;
  max-width: 780px;
  margin: 0 auto 2.5em auto;
}
.bookmaker-card {
  background: linear-gradient(90deg, #831413 0%, #edb716 100%);
  border-radius: 15px;
  color: #fff;
  padding: 2em 2em 1.5em 2em;
  position: relative;
  box-shadow: 0 4px 22px 1px rgba(51,15,14,0.16), 0 1px 4px 0px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}

/* Bookmaker Main Row - aligns logo and button left */
.bookmaker-main-row {
  display: flex;
  align-items: center;
  gap: 2.5em;
  margin-bottom: 0.25em;
}

.bookmaker-rank {
  position: absolute;
  top: 1em;
  left: 1em;
  background: #330f0e;
  color: #fff;
  font-size: 1.2em;
  font-family: var(--font-poppins);
  font-weight: bold;
  padding: 0.35em 1.2em;
  border-radius: 6px 12px 6px 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 6px 0 #0002;
}
.bookmaker-logo {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}
.bookmaker-offer {
  font-size: 1.23em;
  font-family: var(--font-montserrat);
  font-weight: bold;
  margin-left: 20px;
  text-shadow: 0 2px 8px #330f0e44;
  letter-spacing: 0.03em;
}
.bookmaker-offer span {
  font-size: 0.95em;
  color: #ffe97a;
  display: block;
  font-weight: 600;
}
.bookmaker-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-montserrat);
  margin-left: 24px;
}
.stars {
  font-size: 1.15em;
  color: #ffe97a;
}
.score {
  font-size: 2.1em;
  font-weight: bold;
  color: #fff;
  margin-top: 2px;
}
.rating-label {
  font-size: 0.9em;
  color: #ffe97a;
  margin-top: -7px;
}
.bookmaker-btn {
  margin-left: 24px;
  background: #edb716;
  color: #330f0e;
  font-family: var(--font-poppins);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.96em 2.1em;
  font-size: 1.14em;
  cursor: pointer;
  box-shadow: 0 1px 12px 0 #0001;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.13s, color 0.13s;
}
.bookmaker-btn:hover {
  background: #fff;
  color: #831413;
}
.bookmaker-desc {
  font-size: 0.98em;
  margin-left: 30px;
  margin-top: 0.55em;
  max-width: 370px;
  color: #fbf9f4;
  font-family: var(--font-poppins);
  opacity: 0.87;
}

@media (max-width: 900px) {
  .top-bookmakers {
    max-width: 98vw;
    gap: 1em;
  }
  .bookmaker-card {
    flex-direction: column;
    gap: 1em;
    padding: 1.2em 1em 1em 1em;
  }
  .bookmaker-desc , .bookmaker-offer, .bookmaker-rating, .bookmaker-btn {
    margin-left: 0 !important;
  }
  .bookmaker-logo {
    margin: 0 auto;
  }
  /* Bookmaker Main Row responsive */
  .bookmaker-main-row {
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
    width: 100%;
  }
}

/* Informational Section */
.info-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 2px #0001;
  margin: 0 auto 2.7em auto;
  width: 91%;
  max-width: 840px;
  padding: 2.3em 2em;
}
.info-section h2 {
  color: var(--deep-maroon);
  font-family: var(--font-montserrat);
  font-size: 1.7em;
  margin: 0 0 0.9em 0;
  font-weight: 700;
}
.info-section h3 {
  color: var(--primary-red);
  font-size: 1.22em;
  font-family: var(--font-montserrat);
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  font-weight: 600;
}
.info-section p {
  color: var(--deep-maroon);
  font-family: var(--font-poppins);
  font-size: 1.06em;
  margin: 0 0 0.8em 0;
  line-height: 1.57em;
}

/* Value Proposition Section */
.value-section {
  background: #faf8f5;
  border-radius: 16px;
  margin: 0 auto 2.5em auto;
  width: 91%;
  max-width: 840px;
  padding: 2.2em 1.2em 2.7em 1.2em;
}
.value-section h2 {
  color: var(--deep-maroon);
  font-family: var(--font-montserrat);
  font-size: 1.3em;
  margin: 0 0 2.2em 0;
  font-weight: 700;
  text-align: left;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.value-item {
  display: flex;
  align-items: flex-start;
  background: #fff7ea;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 #0001;
  padding: 1.1em 1em 0.90em 1em;
  gap: 1em;
  font-size: 1.03em;
}
.value-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 0.13em;
}
.value-item strong {
  color: #831413;
  font-size: 1.01em;
  font-family: var(--font-montserrat);
  display: inline-block;
  margin-bottom: 0.12em;
}
.value-item span {
  display: block;
  color: var(--deep-maroon);
  font-family: var(--font-poppins);
  font-size: 1em;
  margin-top: 2px;
  line-height: 1.54em;
}

/* Footer Section */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--muted-grey);
  padding: 2.1em 1em 0.9em 1em;
  font-family: var(--font-poppins);
  color: var(--deep-maroon);
  margin-top: 2em;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.3em;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.footer-links a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.03em;
  transition: color 0.16s;
  margin: 0 0.12em;
}
.footer-links a:hover {
  color: var(--accent-gold);
}
.footer-legal {
  max-width: 900px;
  margin: 0 auto 1em auto;
  font-size: 0.93em;
  color: var(--muted-brown);
  text-align: center;
  opacity: 0.95;
  line-height: 1.55em;
}
.footer-logos {
  display: flex;
  gap: 1.8em;
  justify-content: center;
  align-items: center;
  margin: 1.25em auto 0.5em auto;
}
.footer-logos img {
  display: inline-block;
  height: 28px;
  width: auto;
  background: #fff;
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 #0001;
}
.footer-copy {
  text-align: center;
  color: #949398;
  font-size: 12px;
  font-family: var(--font-poppins);
  margin: 1.4em auto 0.2em auto;
}
