:root {
  --main-color: #d62828;
  --accent-color: #f77f00;
  --bg-color: #fff8f0;
  --text-color: #2b2b2b;
  --light: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: var(--main-color);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.2rem;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
}

.hamburger-icon{
      display: none;
      width: 180px;
      height: 100vh;
      position: absolute;
      right: 0;
      top:0;
      background-color: #d62828;
    }
    .hamburger-icon a{
      display: flex;
      height: 40px;
      flex-direction: column;
      padding-left: 10px;
      color: #eeeeee;
      text-decoration: none;
      font-weight: 600;
      padding-top: 10px;
    }

    .hamburger-icon a:hover{
      cursor: pointer;
    }
    .hamburger {
      display: none;
    }
.about-hero {
  background-color: var(--light);
  text-align: center;
  padding: 3rem 1rem;
}

.about-hero h2 {
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  color: var(--main-color);
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

footer {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}

@media (max-width: 750px) {
       header {
    align-items: center;
    flex-wrap: nowrap;
  }
  
      .hamburger{
        display: inline;
      }
      .hamburger-icon{
        display: block;
      }
       nav {
        display: none;
      
      } 

  .about-content {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .about-image img {
    max-width: 90%;
  }
}
