* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d8cbb8;
  padding: 20px 400px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a:hover {
  color: #4CAF50; 
}

.navbar a:active {
  color: #2e7d32; 
}
.navbar a {
  text-decoration: none;
  color: #6b5b4b;
  font-weight: 700;
  transition: color 0.3s ease;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 100px;
}


.hero {
  position: relative;
  height: 500px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}


.hero-text {
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
  color: white;
}
p {
  margin-bottom: 20px;
}
.hero-text h2 {
  font-size: 32px;
  margin: 10px 0;
  letter-spacing: 2px;
}

.hero-content-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 150px;
  color: white;
  z-index: 2;
}

.hero-content-two .left,
.hero-content-two .right {
  width: 40%;
}
.info-section {
  background: #d8cbb8;
  padding: 50px 200px;
  text-align: center;
  color: #504438;
  line-height: 1.6;
}
.hero-sponsors {
  position: relative;
  height: 700px;
}

.sponsor-title {
  position: absolute;
  top: 80px;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 2;
  font-size: 40px;
}.sponsor-logos {
  position: absolute;
  top: 200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  z-index: 2;
  padding: 0 100px;
}

.sponsor-logos img {
  
  width: 180px;
   padding: 10px;
  border-radius: 5px;
}
.cards {
  display: flex;
  gap: 30px;              
  padding: 30px;          
}


.card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;   
}


.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}


.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}


.card-content {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}


.line {
  width: 60px;
  height: 2px;
  background: white;
  margin-bottom: 10px;
  display: block;
}


.footer {
  background: #d8cbb8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 320px;
  position: relative;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 50px;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.footer img {
  width: 60px;
}