:root {
  --bg-color: #f5f0e1;
  --text-color: #3e2f23;
  --accent-color: #c7b198;
  --hover-color: #8a8776;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode rənglər */
    --bg-color: #121212;
    --accent-color: #9b8028;
    --text-color: #f3f3f3;
  --hover-color: #1f1f1f;
  }
}

.back-btn {
  display: inline-block;
  margin: 30px auto;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #a88d6d; /* daha tünd hover tonu */
  transform: scale(1.05);
}


body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.main-header {
  z-index: 999;
  background-color: var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 20px 10vw;
  border-radius: 20vw;
  position: sticky; top: 0;
}

.logo {
  font-size: 2.5vw;
  font-weight: bold;
  font-family: serif;
}
@media (max-width: 932px){
  .logo{
    font-size: 18px;
  }
.hero-container{
  height: 3%;
  width: 10vw;
}
.hero-text li{
  text-size-adjust: 20px;
}
}

.user-icon {
  font-size: 2.2rem;
  color: var(--text-color); /* Tünd qızılı */
  margin-left: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.user-icon:hover {
  transform: scale(1.1);
  color: #c39c2c;
}


.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.2vw;
  position: relative;
  background-color: var(--accent-color);
  transition: color 0.8s ease;
}

.nav-links li a:hover {
  color: var(--hover-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  background-attachment: fixed;
  transition: 0.8s;
  border-radius: 10px;
  padding: 10px;
}

.burger {
  top: 100px;
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 20px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Mobil Uyğunluq */
@media (max-width: 932px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: var(--accent-color);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
  
}



.about-section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 800px;
  text-align: center;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.site-name {
  font-size: 2em;
  color: var(--accent-color);
  margin: 0;
}

.about-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 10px;
}

.contact-links a {
  display: inline-block;
  margin: 0 10px;
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: var(--text-color);
}
