body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff0f5;
}



/* nav-bari */

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffc0cb;
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.menu-links a:hover {
  background-color: #ffb6c1;
  color: #333333;
}


.menu-right {
  position: relative;
}

.dropbtn {
  background-color: #ffc0cb;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropbtn:hover {
  background-color: #ffb6c1;
  color: #333333;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffc0cb;
  min-width: 120px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ffb6c1;
  color: #333333;
}

.dropdown:hover .dropdown-content {
  display: block;
}






/* fotoebis karuseli btw */

.carousel-container {
  position: relative; 
  max-width: 800px;
  height: 450px; 
  margin: 45px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-color: #ffc0cb;
}


.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  border-radius: 50%;
  background-color: rgba(255,192,203,0.7);
  text-align: center;
  line-height: 40px;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10; 
}

.prev:hover, .next:hover {
  background-color: #ffb6c1;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}


.dots-container {
  text-align: center;
  padding: 10px 0;
  background-color: #ffc0cb;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ffb6c1;
}






/* patara entry textebi */

.welcome-div {
 margin-top: 45px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: #333333;
 text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
 font-size: 50px;
 font-weight: bold;
}

.welcome2-div {
 margin-bottom: 50px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 color: #333333;
 text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
 font-weight: 400;
}

.welcome2-div p {
 display: block;
}

.welcome2-div p:nth-of-type(1) {
  font-size: 30px;
  font-weight: 475;
}
.welcome2-div p:nth-of-type(2) {
  font-size: 25px;
  padding-top: 20px;
}





/* patara 6 cali div */
.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

.info-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card h3 {
  color: #ff69b4;
  margin: 15px 0 10px 0;
  font-size: 22px;
  font-weight: bold;
}

.info-card p {
  color: #333;
  padding: 0 15px 20px 15px;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .info-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .info-section {
    grid-template-columns: 1fr;
  }
}



/* qvemota footeri */
.footer {
  background-color: #ffc0cb;
  padding: 40px 20px 30px;
  text-align: center;
  margin-top: 80px;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #333333;
;
}

.footer-copy {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}