/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  height: 80px;
  background-color: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.logo {
  font-weight: bold;
  font-size: 1.9rem;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #e9e9e9;
  font-size: 1.5rem;
}





/* Base and font setup */
body {
  margin: 0;
  background-color: #1b1d20;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-weight: 700;
}

p {
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom, #2c2c2e, #1c1c1e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 4.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  color: #fff;
}

.hero-section p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-bottom: 40px;
  color: #fff;
}
.footer-section {
  background-color: #18181a;
  color: #bbbbbb;
  text-align: center;
  padding: 20px 10px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0);
}

.footer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.fix a {
  text-decoration: none;
  
}

@media (max-width: 600px) {
  /* Your mobile-specific styles go here */
 .logo{
  font-size: 1.4rem;
 }
 .nav-links a{
  font-size: 1.2rem;
 }
}

@media (max-width: 432px) {
  /* Your mobile-specific styles go here */
 #logo-text{
  display: none;
 }

}
