* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  padding: 20px;
}

h2, h3 {
    margin: 8px 0 0;
    line-height: 1;
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
  	font-family: 'Arial', sans-serif;
}

.sp-module ul >li {
    display: block;
    border-bottom: 1px solid #e8e8e8;
    -webkit-transition: 300ms;
    transition: 300ms;
    float: left;
    width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.welcome-message {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 15px;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 80%;
  height: 300px;
}

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

.slide.active {
  opacity: 1;
}

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

.controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.control-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.first-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 40px 0;
  text-align: center;
  display: flex;
  align-items: center;
}

.info-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .weather-info {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
    .slides {
        height: 100px;
    }
    .first-section {
        flex-direction: column;
    }
    .social-links {
    	flex-direction: column;
    }
}


.info-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.info-card.hotel-info {
  background-color: #2c3e50;
  color: white;
}

.info-card.hotel-info h2 {
  color: white;
}

.info-card h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #AE7CAE;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  margin-bottom: 10px;
}

.territorial-experiences {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 40px 0;
  text-align: center;
}

.experience-slides {
  position: relative;
  width: 100%;
  height: 100px;
}

.experience-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.experience-card.active {
  opacity: 1;
}


.social-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #AE7CAE;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #cad;
}

.website-link {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  text-align: center;
  transition: background-color 0.3s;
}

.website-link:hover {
  background-color: #34495e;
}

.weather-widget {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}

.search-box {
  margin-bottom: 20px;
}

.search-box input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.search-box button {
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #2980b9;
}


.weather-info {
  display: none;
  margin-top: 20px;
}

.weather-info.visible {
  display: block;
}

.temperature {
  font-size: 48px;
  margin: 20px 0;
  color: #2c3e50;
}

.weather-icon {
  font-size: 48px;
  margin: 20px 0;
  color: #3498db;
}


.error-message {
  color: #e74c3c;
  margin-top: 20px;
  display: none;
}