/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #440b11;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar .logo img {
  width: 150px;
}

/* Hero Section */
.hero {
  height: 95vh;
  background: url('../images/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 20px;
  position: relative;
	top: 0;
}

/* Hero Content: two-column layout */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  justify-content: center;
}

.hero-column {
  flex: 1;
  padding: 20px;
  display: flex; /* Added flexbox to center content */
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centers the button horizontally */
}

.hero-column img {
  width: 120%;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 25px;
  background-color: #ffcc29;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  text-align: center;
	bottom:80px;
	position: absolute;
}

.cta-button:hover {
  background-color: #FFE829;
}

/* Footer */
footer {
  background-color: #440b11;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.footer-content {
  font-size: 0.9rem;
	max-width: 620px;
	text-align: center;
	margin: 8px auto;
	color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .logo img {
  width: 120px;
}
	.hero {
		height: 90vh;
		 background: url('../images/hero-m.jpg') no-repeat center center/cover;

}
	
	.hero-content {
    flex-direction: column;
  }
	.hero-column img {
  		width: 100%;
  		margin-bottom: 20px;
		margin-top: 360px;
}

  .cta-button {
    font-size: 0.9rem;
	  bottom: 60px;
  }
	.footer-content {
	max-width: 380px;
		padding: 0 24px;
}
	
}
