/* -----------------------------------------
   TravelWorld – Туристическа агенция
   Основен каскаден стил
----------------------------------------- */

/* Основни стилове */
body{
  margin:0;
  padding:0;
  background:#eef4fa;
  font-family:Arial, sans-serif;
  font-size:17px;
  line-height:1.6;
}

.wrap{
  width:1100px;
  margin:0 auto;
}

.sec{
  margin-bottom:30px;
}

/* -----------------------------------------
   I. Горна част
----------------------------------------- */
.top{
  background:#ffffff;
  padding:30px;
  display:flex;
  align-items:center;
  gap:25px;
  border-radius:10px;
}

.top img{
  width:140px;
  height:140px;
}

.top h1{
  margin:0;
  font-size:48px;
  color:#0066aa;
}

/* -----------------------------------------
   II. Навигация
----------------------------------------- */
.nav{
  background:#0066aa;
  padding:18px;
  border-radius:10px;
}

.nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:bold;
  margin-right:25px;
  font-size:18px;
}

/* -----------------------------------------
   III. Основно съдържание
----------------------------------------- */
.main3{
  display:flex;
  gap:25px;
}

.col{
  background:#ffffff;
  padding:25px;
  border-radius:10px;
}

.c1{ width:55%; }
.c2{ width:20%; }
.c3{ width:25%; text-align:center; }

h2{
  margin:0 0 15px 0;
  font-size:26px;
  color:#0066aa;
}

.justify{
  text-align:justify;
}

/* -----------------------------------------
   Слайдшоу
----------------------------------------- */
.slideshow {
  position: relative;
  width: 280px;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
}


.slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slideshow .active {
  opacity: 1;
}

/* -----------------------------------------
   IV. Оферти – две колони
----------------------------------------- */
.news-wrap{
  background:#ffffff;
  padding:25px;
  border-radius:10px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
}

.card{
  background:#fafafa;
  border:1px solid #d0d0d0;
  border-radius:10px;
  padding:18px;
}

.card img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:6px;
  margin-bottom:12px;
}

.card h3{
  margin:0 0 8px 0;
  font-size:20px;
  color:#0066aa;
}

/* -----------------------------------------
   Таблица
----------------------------------------- */
.tablebox{
  background:#ffffff;
  padding:25px;
  border-radius:10px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  font-size:17px;
}

.price-table th{
  background:#0066aa;
  color:#ffffff;
  padding:12px;
  text-align:left;
  font-size:18px;
}

.price-table td{
  padding:12px;
  border-bottom:1px solid #dddddd;
}

.price-table tr:hover{
  background:#f0f8ff;
}

/* -----------------------------------------
   V. Модерна контактна форма
----------------------------------------- */
.contact-modern{
  background:#ffffff;
  padding:35px;
  border-radius:12px;
}

.contact-modern h2{
  font-size:28px;
  color:#0066aa;
  margin-bottom:20px;
  text-align:center;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.field{
  display:flex;
  flex-direction:column;
}

.field label{
  font-weight:bold;
  margin-bottom:6px;
  color:#004d80;
}

.field input,
.field select,
.field textarea{
  border:none;
  border-bottom:2px solid #cccccc;
  padding:10px 5px;
  font-size:16px;
  background:transparent;
  outline:none;
  transition:0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-bottom:2px solid #0066aa;
}

.field textarea{
  resize:vertical;
  height:90px;
}

/* Модерен бутон */
.modern-btn{
  padding:14px;
  background:rgba(0, 102, 170, 0.8);
  color:#ffffff;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-size:18px;
  font-weight:bold;
  backdrop-filter:blur(6px);
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:0.3s ease;
  width:240px;
  margin:0 auto;
}

.modern-btn:hover{
  background:rgba(0, 102, 170, 1);
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(0,0,0,0.3);
}

/* -----------------------------------------
   VI. Footer
----------------------------------------- */
.bottom{
  background:#003d66;
  color:#ffffff;
  text-align:center;
  padding:18px;
  border-radius:10px;
}
