: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;
  }
}
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){
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



  .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;
}

/* Desktop menyu (PC görünüşü) */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  font-size: 1.5vW;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.5s ease;
}

.nav-links .teklifler a{
  border-radius: 20px;
  border-color: var(--text-color);
}

.nav-links .teklifler:hover{
  background-color: #2e2e2e;
  color: gold;
  padding: 0.2vw 0.5vw;
  border-radius: 2vw;
  transition: 0.5s ease;
}


.nav-links li a:hover {
  color: var(--hover-color);
}




/* Hamburger menyu defaultda gizlidir */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 400px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.5s ease;
}

/* MOBİL GÖRÜNÜŞ */
@media (max-width: 932px) {
  .nav-links {
    position: absolute;
    top: -500px;
    right: 20px;
    background-color: var(--accent-color);
    flex-direction: column;
    border-radius: 5vw;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
  }

  .nav-links.menu-open {
    top: 70px;
    opacity: 1;
    pointer-events: auto;
  }
    .nav-links li a{
      font-size: 5vw;
    }

  .burger {
    display: flex;
  }
}




.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  
}

@media (max-width: 932px) {
  .hero-container{
    height: 20vh;
  }
}

.hero-text {
 position: absolute;
  top: 65%;
  left: 2%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2); /* Yarı şəffaf ağ fon */
  backdrop-filter: blur(8px);           /* Bulanıq effekt */
  padding: 5vw 10vw;
  border-radius: 15px;                  /* Yumşaq kənarlar */
  color: #fff;
  max-width: 30vw;
  box-shadow: 0 40px 20px rgba(0,0,0,0.2);
}

@media (max-width: 932px) {
  .hero-text {
    color: var(--text-color);
    left: 2vw;
    top: 40vw;
    padding: 10vw;
  }
}


.hero-text h1 {
  font-size: 2.5vw;
  font-weight: bold;
}
@media (max-width: 932px) {
  .hero-text h1 {
    font-size: 4vw;
    margin-top: -1vw;
  }
}

.hero-text p {
  font-size: 1vw;
  margin-bottom: 1.5vw;
  line-height: 1.5;
}

@media (max-width: 932px) {
  .hero-text p {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}

.cta-button {
  background-color: #333;
  font-size: 1vw;
  color: #fff;
  padding: 0.8vw 1.6vw;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

@media (max-width: 932px) {
  .cta-button{
    padding: 1.4vw 2.8vw;
    margin-bottom: 1vw;
  }
}

.cta-button:hover {
  background-color: #555;
}
.hero-image {
  width: 100vw;
  max-width: 100vw;
 position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;

}

.hero-image img {
  width: 100%;
  height: auto;
}




.products-section {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background-color: var(--bg-color);
  padding: 40px 20px;
  max-width: 80vw;
  margin: 8vw auto 20px;
}

.product-card {
  background-color: #2e2e2e;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: calc((100% / 3) - 13.33px); /* 3 ədəd yan yana */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4; /* Şəklin 3:4 formatda qalması üçün */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-name {
  font-size: 1.2vw;
  color: var(--text-color);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
  margin: 1vw auto 1vw;
}

.product-button {
  margin-bottom: 1vw;
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 1.5vw;
  cursor: pointer;
  transition: background-color 0.8s ease;
  width: fit-content;
}

.product-button:hover {
  background-color: var(--hover-color);
  color: white;
}

/* Responsive */
@media (max-width: 909px) {
  .products-section {
    flex-wrap: wrap;
    justify-content: center;
margin-top: 20vw;
  }
}
  @media (max-width: 909px) {
  .products-section {
    margin-bottom: 20px;
  }

  .product-name {
    font-size: 4vw;
  }

  .product-button{
    font-size: 5vw;
  }
  .product-card {
    width: 45%;
    margin-bottom: 30px;
  }
}

@media (max-width: 720px) {
  .product-card {
    width: 100%;
  }
}



.products-footer {
  max-width: 78.2vw;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-color);
  border-top: 2px solid var(--accent-color);
  border-radius: 0 0 12px 12px;
}

.footer-text {
  font-size: 2vw;
  color: var(--text-color);
  font-weight: 600;
}

.footer-button {
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 1vw 2vw;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 600;
  transition: background-color 0.8s ease;
}

.footer-button:hover {
  background-color: var(--hover-color);
  color: white;
}

/* Responsive */
@media (max-width: 720px) {
  .products-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}


.highlight-products {
  padding: 0vw 1vw;
}

.highlight-products h2 {
  font-size: 2vw;
  text-align: center;
  margin-bottom: 4vw;
  color: var(--text-color);
}

.highlight-card {
  display: flex;
  background-color: #fff;
  border-radius: 1vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0 10% 1vw;
  max-width: 80vw;
  overflow: hidden;
}

.highlight-card img {
  width: 12vw;
  height: auto;
  object-fit: cover;
}

.highlight-info {
  padding: 20px;
  flex-grow: 1;
}

.highlight-info h3 {
  font-size: 2vw;
  margin-bottom: 0.3vw;
}

.highlight-info p {
  font-size: 1.5vw;
  color: #555;
  margin-bottom: 2vw;
}

.price {
  display: block;
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 1vw;
  color: #7b3f00;
}

.buy-btn {
  background-color: #7b3f00;
  font-size: 1vw;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.8s;
}

.buy-btn:hover {
  background-color: #a15807;
}


@media (max-width: 720px) {

  .main-header {
    flex-direction: column;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 20px;
  }

  .logo {
    font-size: 24px;
    text-align: center;
  }

  .hero-text {
    padding: 8vw;
    top: 35%;
    max-width: 90vw;
  }

  .hero-text h1 {
    font-size: 6vw;
  }

  .hero-text p {
    font-size: 4vw;
  }

  .cta-button {
    padding: 3vw 5vw;
    font-size: 4vw;
  }

  .highlight-products h2 {
    font-size: 5vw;
  }

  .highlight-card {
    flex-direction: column;
    align-items: center;
    margin: 5vw auto;
    width: 90vw;
  }

  .highlight-card img {
    width: 100%;
    height: auto;
    border-radius: 1vw 1vw 0 0;
  }

  .highlight-info h3 {
    font-size: 4vw;
  }

  .highlight-info p {
    font-size: 3.5vw;
  }

  .price {
    font-size: 4vw;
  }

  .buy-btn {
    font-size: 4vw;
    padding: 2vw 4vw;
  }

  .footer-text {
    font-size: 4vw;
  }

  .footer-button {
    font-size: 3.5vw;
    padding: 2vw 4vw;
  }
}



.contact-section {
  padding: 80px 100px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section h2 {
  text-align: center;
  font-size: 2vw;
  margin-bottom: 2vw;
  color: var(--text-color);
}

/* Ana konteyner */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 2000px;
  margin: 0 auto;
}

/* Sol: Ad, Soyad, Email, Göndər düyməsi */
.contact-left,
.contact-right {
  flex: 1;
  font-size: 1vw;
}

.contact-left input,
.contact-left button,
.contact-right textarea {
  width: 100%;
  font-size: 1vw;
  padding: 18px 20px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.8s ease;
}

.contact-left input:focus,
.contact-right textarea:focus {
  border-color: #a67c52;
  box-shadow: 0 0 10px rgba(166, 124, 82, 0.3);
  outline: none;
}

.contact-left button {
  background-color: #a67c52;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.5s ease;
}

.contact-left button:hover {
  background-color: #8b5e34;
  transform: scale(1.05);
}

/* Sağ: Mesaj qutusu */
.contact-right textarea {
  height: 400px;
  resize: vertical;
}

@media (max-width: 720px){
  .contact-section h2 {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
  .contact-left input,
  .contact-left button{
    align-items: left;
    font-size: 3vw;
    width: 20vw;
    display: block;
    margin: 10px 0;
    margin-left: -10vw;
  }
.contact-right textarea{
  display: block;
  font-size: 4vw;
  text-align: left;
  margin: 10px;
  margin-left: -10vw;
  padding: 10vw;
  height: 25vw;
}
}



.footer {
  background-color: #2e2e2e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  font-size: 1vw;
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

@media (max-width: 720px){
  .footer-left,
.footer-center,
.footer-right{
  font-size: 3vw;
}
}

.footer-link {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffcc00;
}

.icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.about-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.about-box h3 {
  margin-top: 0;
  color: #ffcc00;
}

.about-box p {
  margin-top: 0;
  font-size: 0.7vw;
}

@media (max-width: 720px){
  .about-box p{
    font-size: 3vw;
  }
}

.footer-menu {
  
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 15px;
}

.footer-menu a {
  margin-bottom: 1vw;
  display: block;
  text-align: right;
  margin-right: 3vw;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #ffcc00;
}


