* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --club-red: #e71921;
  --club-yellow: #fff200;
  --club-black: #111111;
  --club-dark: #1b1b1b;
  --club-gray: #2c2c2c;
  --club-white: #ffffff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--club-black);
}

.page-layout {
  display: grid;
  grid-template-columns: 5% 90% 5%;
  min-height: 100vh;
}

.leftDiv,
.rightDiv {
  background: var(--club-red);
}

.centerDiv {
  background: var(--club-red);
  min-height: 100vh;
}

.site-header {
  min-height: 400px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.65), rgba(17, 17, 17, 0.75)),
    url("../assets/stade1800.png");
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--club-yellow);
}

.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: var(--club-white);
  border-radius: 8px;
  border: 3px solid var(--club-yellow);
  padding: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}


.socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials a {
    color: white;
    font-size: 32px;
    transition: .3s;
}

.socials a:hover {
    color: var(--club-yellow);
    transform: scale(1.15);
}

.navbar {
  width: 80%;
  height: 70px;
  margin: 0 auto;

  background: rgba(231, 25, 33, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-left: 14px solid var(--club-yellow);
  border-right: 14px solid var(--club-yellow);

  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar a,
.navbar .dropdown-trigger {
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--club-yellow);
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}

.navbar a:hover,
.navbar a.active,
.navbar .dropdown:hover .dropdown-trigger {
  background: var(--club-yellow);
  color: var(--club-black);
}


.centerBody {
  min-height: 700px;
  width: 100%;
  background-image: url("../assets/menCity.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.home-intro,
.home-cards,
.why-city,
.stats-section,
.latest-news,
.join-section,
.volunteers-section,
.sponsor-section {

  background: rgba(255, 255, 255, .92);

  margin: 40px auto;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);

  max-width: 1200px;
}

.club-values-banner {
  width: 100%;
  background: var(--club-red);
  text-align: center;
  padding: 0;
  margin: 0;
}

.club-values-banner img {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: 125px;
  margin: 0 auto;
}



.news-ticker {
  width: 100%;
  background: white;
  color: #111;
  overflow: hidden;
  padding: 12px 0;
  border-top: 3px solid var(--club-yellow);
  border-bottom: 3px solid var(--club-yellow);
}

.news-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollNews 25s linear infinite;
}

.news-track span {
  font-weight: 800;
  white-space: nowrap;
}


.intro-row{
    display:flex;
    align-items:center;      /* Centers image and text vertically */
    justify-content:center;
    gap:50px;

    padding:40px 0;          /* Space above and below */
}

.intro-image{
    width:320px;
    height:220px;
    object-fit:cover;

    border-radius:18px;
    border:4px solid var(--club-yellow);

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    flex-shrink:0;
}

.intro-text{
    flex:1;
}

.intro-text h2{
    margin-bottom:20px;
}

.intro-text p{
    margin-bottom:15px;
    line-height:1.7;
}


@keyframes scrollNews {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}


.centerFooter {
  background: var(--club-black);
  color: white;
  border-top: 4px solid var(--club-yellow);
  margin-top: 80px;
}

.footer-container {

  max-width: 1400px;

  margin: auto;

  padding: 60px 40px;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 50px;
}

.footer-column h3 {

  color: var(--club-yellow);

  margin-bottom: 20px;

  font-size: 22px;
}

.footer-column p {

  margin-bottom: 10px;

  line-height: 1.6;
}

.footer-column a {

  display: block;

  color: white;

  text-decoration: none;

  margin-bottom: 12px;

  transition: .3s;
}

.footer-column a:hover {

  color: var(--club-yellow);

  padding-left: 8px;
}

.footer-logo {

  width: 90px;

  margin-bottom: 20px;

  border-radius: 8px;

  background: white;

  padding: 4px;
}

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, .2);

  text-align: center;

  padding: 20px;

  color: #bbb;

  font-size: 14px;
}