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

#map {
    height: 500px;
}


/* Sidebar Styles */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.ad-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-2px);
}

.ad-header {
    padding: 15px;
    font-weight: 600;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.ad-featured {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.ad-promotion {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.ad-sponsor {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #2c3e50 !important;
}
.ad-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #f8f9fa;
}

.ad-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.ad-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ad-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.ad-button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .hotels-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }
}
.btn_anunciate{
    border-radius: 25px;
    background-color: #fc0;
    color: #333;
}
.btn_anunciate:hover{
    background-color: #333;
    color: #fc0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #373946;
  border-radius: 50%;
  z-index: 1050;
  color: white;
  font-size: 1.7rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
  background-color: #24252e;
  transform: scale(1.1);
}

/** footer */
.contact-area {
    width: 100%;
    background: #1A1E25;
    color: #a9a7a7;
}
.contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
}
/** footer */
.object-fit-cover{
    -webkit-mask-image: linear-gradient(black 80%, transparent);
    mask-image: linear-gradient(black 80%, transparent);
}

.ck-editor__editable {
    resize: vertical;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}
  